X-Git-Url: https://git.llucax.com/mecon/ai.git/blobdiff_plain/8f7267f54f85eaff50ab4303c5b2feb895e4f666..14599c3512abed278fb33bd80e204cc4f1140500:/sistema/local_lib/Servicio.php diff --git a/sistema/local_lib/Servicio.php b/sistema/local_lib/Servicio.php index 229ab23..6792359 100644 --- a/sistema/local_lib/Servicio.php +++ b/sistema/local_lib/Servicio.php @@ -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) {