X-Git-Url: https://git.llucax.com/mecon/ai.git/blobdiff_plain/8f7267f54f85eaff50ab4303c5b2feb895e4f666..4d96a4e9e14558cb4b0d546041300ae0fa499d65:/sistema/local_lib/GrupoSecciones.php?ds=sidebyside diff --git a/sistema/local_lib/GrupoSecciones.php b/sistema/local_lib/GrupoSecciones.php index 9f6bfe1..136ebfd 100644 --- a/sistema/local_lib/GrupoSecciones.php +++ b/sistema/local_lib/GrupoSecciones.php @@ -53,10 +53,10 @@ class GrupoSecciones { var $nombre = ''; /** - * @var int $padre + * @var int $grupo_padre * @access public */ - var $padre = 0; + var $grupo_padre = 0; /** * Grupos de secciones que tiene este grupo. @@ -85,10 +85,10 @@ class GrupoSecciones { /** * True si hay que mostrar los grupos hijos (?? FIXME). * - * @var bool $mostrarHijos + * @var bool $mostrar_hijos * @access public */ - var $mostrarHijos = false; + var $mostrar_hijos = false; /** * Indica si esta habilitado. @@ -158,9 +158,9 @@ class GrupoSecciones { extract($row); $this->grupo = $grupo; $this->nombre = $nombre; - $this->padre = $grupo_padre; + $this->grupo_padre = $grupo_padre; $this->antiguedad = $antiguedad; - $this->mostrarHijos = $mostrar_hijos; + $this->mostrar_hijos= $mostrar_hijos; // Obtengo secciones. $secciones = $db->getCol( "SELECT seccion @@ -191,7 +191,7 @@ class GrupoSecciones { $grupo = intval($this->grupo); $where = ''; $datos = array( - 'grupo_padre' => intval($this->padre), + 'grupo_padre' => intval($this->grupo_padre), 'nombre' => $this->nombre, 'habilitado' => $this->habilitado ? 1 : 0, 'antiguedad' => intval($this->antiguedad),