]> git.llucax.com Git - mecon/ai.git/blobdiff - sistema/local_lib/Servicio.php
Se completa el manejo de formularios para GrupoSecciones.
[mecon/ai.git] / sistema / local_lib / Servicio.php
index 229ab237fb0c759f8ecec9e74c25e6fa727f7261..6792359fb51cc168a409943d0d8698c67c2c5342 100644 (file)
@@ -31,6 +31,8 @@ require_once 'AIError.php';
 
 // +X2C Class 413 :Servicio
 /**
+ * Servicio.
+ *
  * @access public
  */
 class Servicio {
@@ -43,10 +45,10 @@ class Servicio {
     var $servicio = 0;
 
     /**
-     * @var    int $padre
+     * @var    int $servicio_padre
      * @access public
      */
-    var $padre = 0;
+    var $servicio_padre = 0;
 
     /**
      * Servicios hijos.
@@ -91,18 +93,18 @@ class Servicio {
     /**
      * Enlace a donde se encuentra la ayuda del servicio.
      *
-     * @var    string $linkAyuda
+     * @var    string $link_ayuda
      * @access public
      */
-    var $linkAyuda = '';
+    var $link_ayuda = '';
 
     /**
      * True si es necesario que el usuario se loguee para usar el servicio.
      *
-     * @var    bool $necesitaLogueo
+     * @var    bool $necesita_logueo
      * @access public
      */
-    var $necesitaLogueo = false;
+    var $necesita_logueo = false;
 
     /**
      * Indica si esta habilitado.
@@ -170,13 +172,13 @@ class Servicio {
         // Asigno valores al objeto.
         extract($row);
         $this->servicio         = $servicio;
-        $this->padre            = $servicio_padre;
+        $this->servicio_padre   = $servicio_padre;
         $this->nombre           = $nombre;
         $this->descripcion      = $descripcion;
         $this->icono            = $icono; # FIXME - new HTML_Icono (o no?)
         $this->link             = $link;
-        $this->linkAyuda        = $link_ayuda;
-        $this->necesitaLogueo   = $necesita_logueo;
+        $this->link_ayuda       = $link_ayuda;
+        $this->necesita_logueo  = $necesita_logueo;
         $this->habilitado       = $habilitado;
         return true;
     }
@@ -194,13 +196,13 @@ class Servicio {
         $servicio = intval($this->servicio);
         $where    = '';
         $datos    = array(
-            'servicio_padre'    => intval($this->padre),
+            'servicio_padre'    => intval($this->servicio_padre),
             'nombre'            => $this->nombre,
             'descripcion'       => $this->descripcion,
             'icono'             => $this->icono,
             'link'              => $this->link,
-            'link_ayuda'        => $this->linkAyuda,
-            'necesita_logueo'   => $this->necesitaLogueo ? 1 : 0,
+            'link_ayuda'        => $this->link_ayuda,
+            'necesita_logueo'   => $this->necesita_logueo ? 1 : 0,
             'habilitado'        => $this->habilitado ? 1 : 0,
         );
         if ($servicio) {