2 // vim: set binary expandtab tabstop=4 softtabstop=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: Thu Jul 3 17:39:15 2003 |
24 // | Autor: Leandro Lucarella <llucar@mecon.gov.ar> |
25 // +--------------------------------------------------------------------+
31 require_once 'MECON/HTML/QuickForm.php';
34 // Definicion de acciones.
37 define('AI_MODIF', 4);
39 // +X2C Class 507 :AI_Form
41 * Formularios para el Administrador de Intranet.
45 class AI_Form extends MECON_HTML_QuickForm {
50 * Construye un formulario para el objecto especificado.
52 * @param object &$obj Objeto con el cual rellenar el formulario. Puede ser GrupoSecciones, Servicio o Sistema.
53 * @param int $accion Accion que realizar?el formulario a crear. Puede ser AI_ALTA, AI_BAJA o AI_MODIFICACION.
58 function iniciar(&$obj, $accion = AI_ALTA) // ~X2C
60 $tipo = substr(get_class($obj), 3);
61 $s_tipo = ucfirst($tipo);
62 if ($tipo == 'gruposecciones') {
64 $s_tipo = 'Grupo de Secciones';
66 $padre = $tipo.'_padre';
72 $s_accion = 'Modificar';
76 $s_accion = 'Agregar';
78 // Construyo con el padre y seteos generales.
79 $this->setRendererOpts(array('width' => '400'));
80 $this->addElement('header','cabecera', $s_accion . ' ' . $s_tipo);
82 if ($tipo == 'sistema') {
83 require_once 'SAMURAI/Sistema.php';
84 $sistemas = SAMURAI_Sistema::getArraySistemas(AI_DB::connect('../conf/DB.ini'));
85 $fId =& $this->addElement('select', $tipo, 'Sistema', $sistemas);
87 if ($accion & (AI_BAJA | AI_MODIF)) {
88 if ($tipo == 'sistema') {
89 $fId->setSelected($obj->$tipo);
91 $fId =& $this->addElement('text', $tipo, 'Identificador');
92 $fId->setValue($obj->$tipo);
96 if ($tipo == 'grupo' or $tipo == 'servicio') {
97 $tipos = array('' => '--', '0' => 'Página Principal') +
98 arbol2array(AI_DB::connect('../conf/DB.ini'),
99 ($tipo == 'grupo') ? 'grupo_secciones' : $tipo, 0, $tipo, 'nombre',
101 $fPadre =& $this->addElement('select', $padre, 'Padre', $tipos);
102 $fNombre =& $this->addElement('text', 'nombre', 'Nombre');
104 $this->addRule('nombre', 'Debe ingresar un nombre.', 'required');
105 $this->addRule($padre, 'Debe ingresar un padre.', 'required');
106 $this->addRule($padre, 'El padre debe ser un número natural.',
109 if ($accion & (AI_BAJA | AI_MODIF)) {
110 $fPadre->setSelected($obj->$padre);
111 $fNombre->setValue($obj->nombre);
114 if ($tipo == 'grupo') {
115 $fAntiguedad =& $this->addElement('select', 'antiguedad', 'Antigüedad',
116 array(3 => '3 días', 1 => '1 día', 7 => '1 semana'));
117 $fSecciones =& $this->addElement('select', 'secciones', 'Secciones',
118 AI_GrupoSecciones::getSeccionesArray(),
119 array('multiple' => 'multiple', 'size' => 5));
120 $fMostrarHijos =& $this->addElement('checkbox', 'mostrar_hijos', 'Mostrar hijos');
122 $this->addRule('antiguedad', 'La antigüedad debe ser un número natural.',
125 if ($accion & (AI_BAJA | AI_MODIF)) {
126 $fAntiguedad->setSelected($obj->antiguedad);
127 $fSecciones->setSelected($obj->secciones);
128 $fMostrarHijos->setChecked($obj->mostrar_hijos);
131 if ($tipo == 'servicio') {
132 $fDescripcion =& $this->addElement('text', 'descripcion', 'Descripción');
133 $fLogueo =& $this->addElement('checkbox','logueo', 'Necesita login');
135 $this->addRule('descripcion', 'Debe ingresar una descripción.', 'required');
137 if ($accion & (AI_BAJA | AI_MODIF)) {
138 $fDescripcion->setValue($obj->descripcion);
139 $fLogueo->setChecked($obj->necesita_logueo);
142 if ($tipo == 'servicio' or $tipo == 'sistema') {
143 $fLink =& $this->addElement('text', 'link', 'Enlace');
144 $fLinkAyuda =& $this->addElement('text', 'link_ayuda', 'Enlace de la ayuda');
145 //$fIcono =& $this->addElement('text', 'icono', 'Ícono');
146 $fIcono =& $this->addElement('select', 'icono', 'Ícono',
147 listaImagenes('/var/www/sistemas/intranet/www/images', $tipo . '_', '\.gif'));
149 if ($accion & (AI_BAJA | AI_MODIF)) {
150 $fLink->setValue($obj->link);
151 $fLinkAyuda->setValue($obj->link_ayuda);
152 $fIcono->setValue($obj->icono);
155 if ($tipo == 'sistema') {
156 $this->addRule('link', 'Debe ingresar un nombre.', 'required');
157 $this->addRule('icono', 'Debe ingresar un ícono.', 'required');
160 $fHabilitado =& $this->addElement('checkbox','habilitado', 'Está habilitado',
161 '', array('checked' => 'checked'));
163 if ($accion & (AI_BAJA | AI_MODIF)) {
164 $fHabilitado->setChecked($obj->habilitado);
167 $fBtnAccion =& parent::createElement('submit', 'aceptar' , $s_accion);
168 if ($accion & AI_MODIF) {
169 $fBtnCancelar =& parent::createElement('submit', 'modificar' , 'Borrar');
170 } elseif ($accion & AI_ALTA) {
171 $fBtnCancelar =& parent::createElement('reset', 'agregar', 'Limpiar');
172 } elseif ($accion & AI_BAJA) {
173 $fBtnCancelar =& parent::createElement('submit', 'borrar', 'Cancelar');
179 $this->addGroup($grupo, 'botones');
183 // +X2C Operation 510
185 * Llena un objeto con los datos del formulario.
187 * @param mixed &$obj Objeto a llenar con los datos del formulario. Puede ser GrupoSecciones, Servicio o Sistema.
192 function llenarObjeto(&$obj) // ~X2C
194 $tipo = substr(get_class($obj), 3);
195 if ($tipo == 'gruposecciones') {
198 $padre = $tipo.'_padre';
200 $obj->$tipo = $this->getSubmitValue($tipo);
201 $obj->habilitado = $this->getSubmitValue('habilitado');
202 if ($tipo == 'grupo' or $tipo == 'servicio') {
203 $obj->$padre = $this->getSubmitValue($padre);
204 $obj->nombre = $this->getSubmitValue('nombre');
206 if ($tipo == 'grupo') {
207 $obj->antiguedad = $this->getSubmitValue('antiguedad');
208 $obj->secciones = $this->getSubmitValue('secciones');
209 $obj->mostrar_hijos = $this->getSubmitValue('mostrar_hijos');
211 if ($tipo == 'servicio') {
212 $obj->descripcion = $this->getSubmitValue('descripcion');
213 $obj->necesita_logueo = $this->getSubmitValue('logueo');
215 if ($tipo == 'servicio' or $tipo == 'sistema') {
216 $obj->link = $this->getSubmitValue('link');
217 $obj->link_ayuda = $this->getSubmitValue('link_ayuda');
218 $obj->icono = $this->getSubmitValue('icono');
223 } // -X2C Class :AI_Form
225 // FIXME - Poner esto en algun lugar mejor.
226 function listaImagenes($dir = '.', $prepend = '', $append = '')
228 $lista = array('' => '--');
230 while (($file = $d->read()) !== false) {
231 if (preg_match("/$prepend(.*)$append/", $file, $m)) {
232 $nombre = ucwords(join(' ', preg_split('/_/', $m[1])));
233 $lista[$file] = $nombre;
239 // FIXME - Poner esto en algun lugar mejor.
240 function arbol2array(&$db, $tabla, $actual, $id, $nombre, $padre, $order = '', $indent = ' ')
242 // Para llevar el nivel de indentación
245 $sql = "SELECT $id, $nombre
247 if (!is_null($padre)) {
248 $sql .= " WHERE $padre = ".$db->quote($actual);
251 $sql .= " ORDER BY $nombre $order";
253 $array = $db->getAssoc($sql);
254 if (DB::isError($array)) {
258 foreach ($array as $key => $val) {
259 $ret[$key] = str_repeat($indent, $nivel) . $val;
260 $ret += arbol2array($db, $tabla, $key, $id, $nombre, $padre, $order, $indent);