2 // vim: set binary 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 // +--------------------------------------------------------------------+
31 require_once 'AI/DBTreeObject.php';
34 require_once 'AI/Error.php';
37 * Archivo de configuración.
39 define('AI_GRUPOSECCIONES_CONFFILE', dirname(__FILE__).'/GrupoSecciones.ini');
41 // +X2C Class 486 :AI_GrupoSecciones
48 class AI_GrupoSecciones extends AI_DBTreeObject {
50 * ID del grupo de secciones.
66 * @var int $grupo_padre
72 * Secciones que pertenecen a este grupo.
74 * @var array $secciones
77 var $secciones = array();
80 * Antigedad (en d?s) de las noticias a mostrar.
82 * @var int $antiguedad
88 * True si hay que mostrar los grupos hijos (?? FIXME).
90 * @var bool $mostrar_hijos
93 var $mostrar_hijos = false;
96 * Indica si esta habilitado.
98 * @var bool $habilitado
101 var $habilitado = true;
105 // +X2C Operation 495
107 * @param int $grupo ID del grupo.
112 function AI_GrupoSecciones($grupo = 0) // ~X2C
114 parent::AI_DBTreeObject($grupo, AI_GRUPOSECCIONES_CONFFILE);
118 // +X2C Operation 496
120 * @param mixed $db Base de datos o Resultado a utilizar.
125 function cargar($db) // ~X2C
127 // Obtengo campos comunes.
128 $err = parent::cargar($db);
129 if (PEAR::isError($err)) {
132 // Obtengo secciones.
133 $id = intval($this->grupo);
134 extract($this->conf['secciones'], EXTR_PREFIX_ALL, 'cnf');
135 $secciones = $db->getCol(
137 FROM $cnf_base.$cnf_tabla
140 if (DB::isError($secciones)) {
144 $this->secciones = $secciones;
146 $this->secciones = array();
152 // +X2C Operation 497
154 * @param DB $db DB donde guardar.
155 * @param bool $nuevo Si es true, se fuerza a guardar el Grupo de Secciones como nuevo.
160 function guardar($db, $nuevo = false) // ~X2C
162 // Guardo datos generales.
164 'grupo_padre' => intval($this->grupo_padre),
165 'nombre' => $this->nombre,
166 'habilitado' => $this->habilitado ? 1 : 0,
167 'antiguedad' => intval($this->antiguedad),
168 'mostrar_hijos' => $this->mostrar_hijos ? 1 : 0,
170 $err = parent::guardar($db, $datos, $nuevo);
171 if (PEAR::isError($err)) {
174 // Guardo datos de secciones.
175 $id_field = $this->conf['id'];
176 $id = intval($this->$id_field);
177 extract($this->conf['secciones'], EXTR_PREFIX_ALL, 'cnf');
178 $res = $db->query("DELETE FROM $cnf_base.$cnf_tabla WHERE $cnf_id = $id");
179 if (DB::isError($res)) {
182 $prepare = $db->prepare("INSERT INTO $cnf_base.$cnf_tabla
183 ($cnf_id, $cnf_campo) VALUES ($id, ?)");
184 if (DB::isError($prepare)) {
187 $res = $db->executeMultiple($prepare, $this->secciones);
188 if (DB::isError($res)) {
195 // +X2C Operation 498
197 * @param DB $db DB de donde borrar.
202 function borrar($db) // ~X2C
204 // Obtengo campos comunes.
205 $err = parent::borrar($db);
206 if (PEAR::isError($err)) {
209 // Obtengo secciones.
210 $id = intval($this->grupo);
211 extract($this->conf['secciones'], EXTR_PREFIX_ALL, 'cnf');
213 "DELETE FROM $cnf_base.$cnf_tabla WHERE $cnf_id = $id");
214 if (DB::isError($res)) {
221 // +X2C Operation 512
223 * Obtiene un array con una lista de secciones.
225 * @param DB $db Base de datos a usar para obtener los datos.
231 function getSeccionesArray($db = null) // ~X2C
235 $conf = parse_ini_file(AI_GRUPOSECCIONES_CONFFILE, true);
236 $conf = $conf['mecondav'];
239 return $db->getAssoc("
242 ORDER BY $campo ASC");
246 } // -X2C Class :AI_GrupoSecciones