2 // vim: set expandtab tabstop=4 shiftwidth=4:
3 // +--------------------------------------------------------------------+
4 // | Ministerio de Economía |
5 // | AI (Administrador de Intranet) |
6 // +--------------------------------------------------------------------+
7 // | This file is part of AI. |
9 // | AI is free software; you can redistribute it and/or modify |
10 // | it under the terms of the GNU General Public License as published |
11 // | by the Free Software Foundation; either version 2 of the License, |
12 // | or (at your option) any later version. |
14 // | AI is distributed in the hope that it will be useful, but |
15 // | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
17 // | General Public License for more details. |
19 // | You should have received a copy of the GNU General Public License |
20 // | along with Hooks; if not, write to the Free Software Foundation, |
21 // | Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
22 // +--------------------------------------------------------------------+
23 // | Creado: Tue Jun 24 16:22:07 2003 |
24 // | Autor: Leandro Lucarella <llucar@mecon.gov.ar> |
25 // +--------------------------------------------------------------------+
30 require_once 'AI/Error.php';
32 // +X2C Class 486 :AI_GrupoSecciones
39 class AI_GrupoSecciones {
41 * ID del grupo de secciones.
57 * @var int $grupo_padre
63 * Grupos de secciones que tiene este grupo.
68 var $_hijos = array();
71 * Secciones que pertenecen a este grupo.
73 * @var array $secciones
76 var $secciones = array();
79 * Antigedad (en d?s) de las noticias a mostrar.
81 * @var int $antiguedad
87 * True si hay que mostrar los grupos hijos (?? FIXME).
89 * @var bool $mostrar_hijos
92 var $mostrar_hijos = false;
95 * Indica si esta habilitado.
97 * @var bool $habilitado
100 var $habilitado = true;
110 return $this->_hijos;
115 // +X2C Operation 495
117 * @param int $grupo ID del grupo.
122 function AI_GrupoSecciones($grupo = 0) // ~X2C
124 $this->grupo = $grupo;
128 // +X2C Operation 496
130 * @param mixed $db Base de datos o Resultado a utilizar.
135 function cargar($db) // ~X2C
137 $grupo = intval($this->grupo);
138 if (is_a($db, 'db_result')) {
141 // Si no es un resultado, hago el query.
143 $result = $db->query(
146 WHERE grupo = $grupo"
148 if (DB::isError($result)) {
153 $row = $result->fetchRow(DB_FETCHMODE_ASSOC);
155 return new AI_Error(AI_ERROR_NO_RESULTADOS,
156 "No hay más resultados en la DB [grupo=$grupo]");
158 // Asigno valores al objeto.
160 $this->grupo = $grupo;
161 $this->nombre = $nombre;
162 $this->grupo_padre = $grupo_padre;
163 $this->habilitado = $habilitado;
164 $this->antiguedad = $antiguedad;
165 $this->mostrar_hijos= $mostrar_hijos;
166 // Obtengo secciones.
167 $secciones = $db->getCol(
169 FROM grupo_secciones_seccion
170 WHERE grupo = $grupo"
172 if (DB::isError($secciones)) {
176 $this->secciones = $secciones;
178 $this->secciones = array();
184 // +X2C Operation 497
186 * @param DB $db DB donde guardar.
191 function guardar($db) // ~X2C
193 $grupo = intval($this->grupo);
196 'grupo_padre' => intval($this->grupo_padre),
197 'nombre' => $this->nombre,
198 'habilitado' => $this->habilitado ? 1 : 0,
199 'antiguedad' => intval($this->antiguedad),
200 'mostrar_hijos' => $this->mostrar_hijos ? 1 : 0,
203 $accion = DB_AUTOQUERY_UPDATE;
204 $where = "grupo = $grupo";
206 $accion = DB_AUTOQUERY_INSERT;
207 $grupo = $db->nextId('grupo_secciones');
208 if (DB::isError($grupo)) {
211 // Asigno el nuevo id de grupo.
212 $this->grupo = $grupo;
213 $datos['grupo'] = $grupo;
215 $res = $db->autoExecute('grupo_secciones', $datos, $accion, $where);
216 if (DB::isError($res)) {
219 $res = $db->query("DELETE FROM grupo_secciones_seccion WHERE grupo = $grupo");
220 if (DB::isError($res)) {
223 $prepare = $db->prepare("INSERT INTO grupo_secciones_seccion
224 (grupo, seccion) VALUES ($grupo, ?)");
225 if (DB::isError($prepare)) {
228 $res = $db->executeMultiple($prepare, $this->secciones);
229 if (DB::isError($res)) {
236 // +X2C Operation 498
238 * @param DB $db DB de donde borrar.
243 function borrar($db) // ~X2C
245 $grupo = intval($this->grupo);
248 "DELETE FROM grupo_secciones WHERE grupo = $grupo");
249 if (DB::isError($res)) {
253 "DELETE FROM grupo_secciones_seccion WHERE grupo = $grupo");
254 if (DB::isError($res)) {
259 return PEAR::raiseError("No hay un grupo válido para borrar");
263 // +X2C Operation 499
265 * @param DB $db DB de donde cargar los hijos.
270 function cargarHijos($db) // ~X2C
272 $grupo = intval($this->grupo);
273 $result = $db->query("SELECT * FROM grupo_secciones WHERE grupo_padre = $grupo");
274 if (DB::isError($result)) {
277 $this->_hijos = array();
278 $hijo = new GrupoSecciones;
279 $err = $hijo->cargar($result);
280 while (!PEAR::isError($err)) {
281 $this->_hijos[] = $hijo->__clone();
282 $err = $hijo->cargar($result);
284 // Si no hay mas resultados, entonces terminó bien.
285 if (AI_Error::isError($err)
286 and $err->getCode() == AI_ERROR_NO_RESULTADOS) {
289 // Si no, se devuelve el error.
294 // +X2C Operation 500
296 * @return GrupoSecciones
299 function __clone() // ~X2C
305 } // -X2C Class :AI_GrupoSecciones