X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/553c0c03aa27712a1017d31165d01feb522d729f..94983fa84d06dc5e6f99f6b570245bcf08b96a75:/sistema/local_lib/Sistema.php diff --git a/sistema/local_lib/Sistema.php b/sistema/local_lib/Sistema.php index 98594fa..58202e6 100644 --- a/sistema/local_lib/Sistema.php +++ b/sistema/local_lib/Sistema.php @@ -158,7 +158,7 @@ class Sistema { * @return void * @access public */ - function Sistema(&$db, $id = null)// ~X2C + function Sistema(&$db, $id = null) // ~X2C { $this->_db =& $db; $this->_id = $id; @@ -185,7 +185,7 @@ class Sistema { * @return int * @access public */ - function getId()// ~X2C + function getId() // ~X2C { return $this->_id; } @@ -198,7 +198,7 @@ class Sistema { * @return string * @access public */ - function getNombre()// ~X2C + function getNombre() // ~X2C { return $this->_nombre; } @@ -211,7 +211,7 @@ class Sistema { * @return string * @access public */ - function getDescripcion()// ~X2C + function getDescripcion() // ~X2C { return $this->_descripcion; } @@ -224,7 +224,7 @@ class Sistema { * @return &date * @access public */ - function &getFechaInicio()// ~X2C + function &getFechaInicio() // ~X2C { if ($this->_fecha_inicio) { return new Date ($this->_fecha_inicio.' 00:00:00'); @@ -242,7 +242,7 @@ class Sistema { * @return &date * @access public */ - function &getFechaFin()// ~X2C + function &getFechaFin() // ~X2C { if ($this->_fecha_fin) { return new Date ($this->_fecha_fin.' 00:00:00'); @@ -260,7 +260,7 @@ class Sistema { * @return &date * @access public */ - function &getFechaImplementacion()// ~X2C + function &getFechaImplementacion() // ~X2C { if ($this->_fecha_implementacion) { return new Date ($this->_fecha_implementacion.' 00:00:00'); @@ -278,7 +278,7 @@ class Sistema { * @return string * @access public */ - function getContacto()// ~X2C + function getContacto() // ~X2C { return $this->_contacto; } @@ -293,7 +293,7 @@ class Sistema { * @return void * @access public */ - function setNombre($nombre = null)// ~X2C + function setNombre($nombre = null) // ~X2C { $this->_nombre = $nombre; } @@ -308,7 +308,7 @@ class Sistema { * @return void * @access public */ - function setDescripcion($descripcion = null)// ~X2C + function setDescripcion($descripcion = null) // ~X2C { $this->_descripcion = $descripcion; } @@ -323,7 +323,7 @@ class Sistema { * @return void * @access public */ - function setFechaInicio($fecha = null)// ~X2C + function setFechaInicio($fecha = null) // ~X2C { if ($fecha && $fecha != '0000-00-00') { $this->_fecha_inicio = $fecha; @@ -343,7 +343,7 @@ class Sistema { * @return void * @access public */ - function setFechaFin($fecha = null)// ~X2C + function setFechaFin($fecha = null) // ~X2C { if ($fecha && $fecha != '0000-00-00') { $this->_fecha_fin = $fecha; @@ -363,7 +363,7 @@ class Sistema { * @return void * @access public */ - function setFechaImplementacion($fecha = null)// ~X2C + function setFechaImplementacion($fecha = null) // ~X2C { if ($fecha && $fecha != '0000-00-00') { $this->_fecha_implementacion = $fecha; @@ -384,7 +384,7 @@ class Sistema { * @return void * @access public */ - function setContacto($contacto = null)// ~X2C + function setContacto($contacto = null) // ~X2C { $this->_contacto = $contacto; } @@ -397,7 +397,7 @@ class Sistema { * @return void * @access private */ - function _obtenerDatosDb()// ~X2C + function _obtenerDatosDb() // ~X2C { $sql = include 'Sistema/consultas.php'; //Incluyo las consultas de este objeto nada mas. $tmp = $sql['obtener_datos_sistema'].$sql['obtener_datos_sistema2']; @@ -486,7 +486,7 @@ class Sistema { * @return void * @access public */ - function guardarDatos($accion = grabar)// ~X2C + function guardarDatos($accion = grabar) // ~X2C { $accion = strtolower($accion); switch ($accion) { @@ -511,7 +511,7 @@ class Sistema { * @return string * @access public */ - function getResponsable()// ~X2C + function getResponsable() // ~X2C { return $this->_responsable; } @@ -526,7 +526,7 @@ class Sistema { * @return void * @access public */ - function setResponsable($responsable = null)// ~X2C + function setResponsable($responsable = null) // ~X2C { $this->_responsable = $responsable; } @@ -539,7 +539,7 @@ class Sistema { * @return array * @access public */ - function getIdPermisos()// ~X2C + function getIdPermisos() // ~X2C { return $this->_permisos; } @@ -554,7 +554,7 @@ class Sistema { * @return void * @access public */ - function setPermisos($permisos = null)// ~X2C + function setPermisos($permisos = null) // ~X2C { $this->_permisos = $permisos; } @@ -565,7 +565,7 @@ class Sistema { * @return int * @access public */ - function getMaxIdSistema()// ~X2C + function getMaxIdSistema() // ~X2C { $sql = include 'Sistema/consultas.php'; $dbh = $this->_db->prepare($sql['obtener_max_id_sistemas']); @@ -583,7 +583,7 @@ class Sistema { * @return void * @access private */ - function _grabarDb()// ~X2C + function _grabarDb() // ~X2C { $idSistema = $this->_db->nextId('sistema'); $fecha_inicio = $this->getFechaInicio(); @@ -622,7 +622,7 @@ class Sistema { * @return void * @access private */ - function _borrarDb()// ~X2C + function _borrarDb() // ~X2C { $idSistema = $this->getId(); $responsable = $this->getResponsable(); @@ -650,7 +650,7 @@ class Sistema { * @return void * @access private */ - function _modificarDb()// ~X2C + function _modificarDb() // ~X2C { //Grabo las modificaciones al sistema $idSistema = $this->getId(); @@ -695,7 +695,7 @@ class Sistema { * @return void * @access private */ - function _grabarPermisosDb($idSistema)// ~X2C + function _grabarPermisosDb($idSistema) // ~X2C { $datos = array ('id_permiso','id_sistema','responsable'); $re = $this->_db->autoPrepare('perm_sist', $datos, DB_AUTOQUERY_INSERT); @@ -723,7 +723,7 @@ class Sistema { * @return void * @access private */ - function _borrarPermisosDb($idSistema, $observaciones = null, $idPermiso = null)// ~X2C + function _borrarPermisosDb($idSistema, $observaciones = null, $idPermiso = null) // ~X2C { $sql = include 'Sistema/consultas.php'; $datos[] = $idSistema; @@ -755,7 +755,7 @@ class Sistema { * @return bool * @access public */ - function guardarAsociacion($idPermiso, $observacion = '')// ~X2C + function guardarAsociacion($idPermiso, $observacion = '') // ~X2C { $error = true; if (!$this->_existeAsociacion($idPermiso, $observacion)) { @@ -786,7 +786,7 @@ class Sistema { * @return bool * @access public */ - function eliminarAsociacion($idPermiso, $observacion = '')// ~X2C + function eliminarAsociacion($idPermiso, $observacion = '') // ~X2C { $error = false; //Elimino la asociacion @@ -809,7 +809,7 @@ class Sistema { * @return bool * @access public */ - function modificarAsociacion($idPermiso, $idPermiso_ant, $observacion = '', $obs_ant = '')// ~X2C + function modificarAsociacion($idPermiso, $idPermiso_ant, $observacion = '', $obs_ant = '') // ~X2C { $error = true; //Busco la nueva asociacion @@ -844,7 +844,7 @@ class Sistema { * @return bool * @access private */ - function _existeAsociacion($idPermiso, $observacion)// ~X2C + function _existeAsociacion($idPermiso, $observacion) // ~X2C { $sql = include 'Sistema/consultas.php'; //Incluyo las consultas de este objeto nada mas. $tmp = $sql['obtener_permisos'].$sql['obtener_permisos3'].$sql['obtener_permisos4']; @@ -864,4 +864,4 @@ class Sistema { } // -X2C Class :Sistema -?> +?> \ No newline at end of file