* @return void
* @access public
*/
- function Sistema(&$db, $id = null)// ~X2C
+ function Sistema(&$db, $id = null) // ~X2C
{
$this->_db =& $db;
$this->_id = $id;
* @return int
* @access public
*/
- function getId()// ~X2C
+ function getId() // ~X2C
{
return $this->_id;
}
* @return string
* @access public
*/
- function getNombre()// ~X2C
+ function getNombre() // ~X2C
{
return $this->_nombre;
}
* @return string
* @access public
*/
- function getDescripcion()// ~X2C
+ function getDescripcion() // ~X2C
{
return $this->_descripcion;
}
* @return &date
* @access public
*/
- function &getFechaInicio()// ~X2C
+ function &getFechaInicio() // ~X2C
{
if ($this->_fecha_inicio) {
return new Date ($this->_fecha_inicio.' 00:00:00');
* @return &date
* @access public
*/
- function &getFechaFin()// ~X2C
+ function &getFechaFin() // ~X2C
{
if ($this->_fecha_fin) {
return new Date ($this->_fecha_fin.' 00:00:00');
* @return &date
* @access public
*/
- function &getFechaImplementacion()// ~X2C
+ function &getFechaImplementacion() // ~X2C
{
if ($this->_fecha_implementacion) {
return new Date ($this->_fecha_implementacion.' 00:00:00');
* @return string
* @access public
*/
- function getContacto()// ~X2C
+ function getContacto() // ~X2C
{
return $this->_contacto;
}
* @return void
* @access public
*/
- function setNombre($nombre = null)// ~X2C
+ function setNombre($nombre = null) // ~X2C
{
$this->_nombre = $nombre;
}
* @return void
* @access public
*/
- function setDescripcion($descripcion = null)// ~X2C
+ function setDescripcion($descripcion = null) // ~X2C
{
$this->_descripcion = $descripcion;
}
* @return void
* @access public
*/
- function setFechaInicio($fecha = null)// ~X2C
+ function setFechaInicio($fecha = null) // ~X2C
{
if ($fecha && $fecha != '0000-00-00') {
$this->_fecha_inicio = $fecha;
* @return void
* @access public
*/
- function setFechaFin($fecha = null)// ~X2C
+ function setFechaFin($fecha = null) // ~X2C
{
if ($fecha && $fecha != '0000-00-00') {
$this->_fecha_fin = $fecha;
* @return void
* @access public
*/
- function setFechaImplementacion($fecha = null)// ~X2C
+ function setFechaImplementacion($fecha = null) // ~X2C
{
if ($fecha && $fecha != '0000-00-00') {
$this->_fecha_implementacion = $fecha;
* @return void
* @access public
*/
- function setContacto($contacto = null)// ~X2C
+ function setContacto($contacto = null) // ~X2C
{
$this->_contacto = $contacto;
}
* @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'];
* @return void
* @access public
*/
- function guardarDatos($accion = grabar)// ~X2C
+ function guardarDatos($accion = grabar) // ~X2C
{
$accion = strtolower($accion);
switch ($accion) {
* @return string
* @access public
*/
- function getResponsable()// ~X2C
+ function getResponsable() // ~X2C
{
return $this->_responsable;
}
* @return void
* @access public
*/
- function setResponsable($responsable = null)// ~X2C
+ function setResponsable($responsable = null) // ~X2C
{
$this->_responsable = $responsable;
}
* @return array
* @access public
*/
- function getIdPermisos()// ~X2C
+ function getIdPermisos() // ~X2C
{
return $this->_permisos;
}
* @return void
* @access public
*/
- function setPermisos($permisos = null)// ~X2C
+ function setPermisos($permisos = null) // ~X2C
{
$this->_permisos = $permisos;
}
* @return int
* @access public
*/
- function getMaxIdSistema()// ~X2C
+ function getMaxIdSistema() // ~X2C
{
$sql = include 'Sistema/consultas.php';
$dbh = $this->_db->prepare($sql['obtener_max_id_sistemas']);
* @return void
* @access private
*/
- function _grabarDb()// ~X2C
+ function _grabarDb() // ~X2C
{
$idSistema = $this->_db->nextId('sistema');
$fecha_inicio = $this->getFechaInicio();
* @return void
* @access private
*/
- function _borrarDb()// ~X2C
+ function _borrarDb() // ~X2C
{
$idSistema = $this->getId();
$responsable = $this->getResponsable();
* @return void
* @access private
*/
- function _modificarDb()// ~X2C
+ function _modificarDb() // ~X2C
{
//Grabo las modificaciones al sistema
$idSistema = $this->getId();
* @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);
* @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;
* @return bool
* @access public
*/
- function guardarAsociacion($idPermiso, $observacion = '')// ~X2C
+ function guardarAsociacion($idPermiso, $observacion = '') // ~X2C
{
$error = true;
if (!$this->_existeAsociacion($idPermiso, $observacion)) {
* @return bool
* @access public
*/
- function eliminarAsociacion($idPermiso, $observacion = '')// ~X2C
+ function eliminarAsociacion($idPermiso, $observacion = '') // ~X2C
{
$error = false;
//Elimino la asociacion
* @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
* @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'];
} // -X2C Class :Sistema
-?>
+?>
\ No newline at end of file