2 // vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
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/DBTreeObject.php';
31 require_once 'AI/Error.php';
34 * Archivo de configuración.
36 define('AI_SERVICIO_CONFFILE', dirname(__FILE__).'/Servicio.ini');
39 * Trae los servicios en un orden según la <em>longitud</em> de los hijos.
40 * La <em>longitud<em> de los hijos se calcula prediciendo la cantidad de
41 * renglones que va a ocupar cada hijo y sumándolos para un mismo padre.
43 define('AI_SERVICIO_ORDEN_LONG_HIJOS', 1);
46 * Trae los servicios en un orden según la longitud del nombre.
48 define('AI_SERVICIO_ORDEN_LONG_NOMBRE', 2);
56 class AI_Servicio extends AI_DBTreeObject {
66 * @var int $servicio_padre
69 var $servicio_padre = 0;
72 * Nombre del servicio.
80 * Descripción del servicio.
82 * @var string $descripcion
85 var $descripcion = '';
96 * Enlace a donde el este servicio.
104 * Enlace a donde se encuentra la ayuda del servicio.
106 * @var string $link_ayuda
109 var $link_ayuda = '';
112 * True si es necesario que el usuario se loguee para usar el servicio.
114 * @var bool $necesita_logueo
117 var $necesita_logueo = false;
120 * Indica si esta habilitado.
122 * @var bool $habilitado
125 var $habilitado = true;
128 * Indica si debe abrirse en una ventana nueva.
130 * @var bool $ventana_nueva
133 var $ventana_nueva = false;
136 * @param int $servicio ID del servicio.
141 function AI_Servicio($servicio = 0)
143 parent::AI_DBTreeObject($servicio, AI_SERVICIO_CONFFILE);
147 * @param DB $db DB donde guardar.
148 * @param bool $nuevo Si es true, se fuerza a guardar el Servicio como
154 function guardar($db, $nuevo = false)
157 'servicio_padre' => intval($this->servicio_padre),
158 'nombre' => $this->nombre,
159 'descripcion' => $this->descripcion,
160 'icono' => $this->icono,
161 'link' => $this->link,
162 'link_ayuda' => $this->link_ayuda,
163 'necesita_logueo' => $this->necesita_logueo ? 1 : 0,
164 'habilitado' => $this->habilitado ? 1 : 0,
165 'ventana_nueva' => $this->ventana_nueva ? 1 : 0,
167 $err = parent::guardar($db, $datos, $nuevo);
168 if (PEAR::isError($err)) {
174 * Carga hijos de un servicio.
175 * Si hubo error devuelve un PEAR_Error, si no hubo error, devuleve un
176 * array de objetos (los hijos).
178 * @param mixed $db Base de datos o resultado a usar.
179 * @param bool $soloHabilitados Si es true, sólo trae los servicios
181 * @param mixed $orden Indica el orden en que se deben traer los hijos.
182 * Puede ser AI_SERVICIO_ORDEN_CANT_HIJOS,
183 * AI_SERVICIO_ORDEN_LONG_NOMBRE o un campo
189 function cargarHijos($db, $soloHabilitados = true, $orden = false)
191 if (!is_a($db, 'db_result')) {
192 if (is_int($orden)) {
193 $id_field = $this->conf['id'];
194 $id_padre = $this->conf['padre'];
195 $id = intval($this->$id_field);
196 if ($orden === AI_SERVICIO_ORDEN_LONG_HIJOS) {
201 SUM(CEIL(LENGTH(B.nombre) / 22)) as RENGLONES
202 FROM {$this->conf['base']}.{$this->conf['tabla']} AS A,
203 {$this->conf['base']}.{$this->conf['tabla']} AS B
204 WHERE A.$id_field = B.$id_padre
205 AND A.$id_padre = $id";
206 if ($soloHabilitados) {
207 $query .= " AND A.{$this->conf['habilitado']} = 1";
211 ORDER BY RENGLONES DESC, COUNT DESC, A.nombre";
212 } elseif ($orden === AI_SERVICIO_ORDEN_LONG_NOMBRE) {
215 FROM {$this->conf['base']}.{$this->conf['tabla']}
216 WHERE $id_padre = $id";
217 if ($soloHabilitados) {
218 $query .= ' AND ' . $this->conf['habilitado'] . ' = 1';
220 $query .= ' ORDER BY LENGTH(nombre)';
222 return new AI_Error(AI_ERROR_ORDEN_INVALIDO,
223 "Tipo de órden incorrecto [orden=$orden]");
225 $result = $db->query($query);
226 if (DB::isError($result)) {
229 return parent::cargarHijos($result, $soloHabilitados, $orden);
232 return parent::cargarHijos($db, $soloHabilitados, $orden);