// +X2C Class 413 :Servicio
/**
+ * Servicio.
+ *
* @access public
*/
class Servicio {
var $servicio = 0;
/**
- * @var int $padre
+ * @var int $servicio_padre
* @access public
*/
- var $padre = 0;
+ var $servicio_padre = 0;
/**
* Servicios hijos.
/**
* 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.
// 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;
}
$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) {