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 require_once 'general.php';
36 // Definicion de acciones.
39 define('AI_MODIF', 4);
41 // +X2C Class 507 :AI_Form
43 * Formularios para el Administrador de Intranet.
48 class AI_Form extends MECON_HTML_QuickForm {
53 * Construye un formulario para el objecto especificado.
55 * @param object &$obj Objeto con el cual rellenar el formulario. Puede ser GrupoSecciones, Servicio o Sistema.
56 * @param int $accion Accion que realizar?el formulario a crear. Puede ser AI_ALTA, AI_BAJA o AI_MODIFICACION.
57 * @param HTML_Arbol $arbol ?bol de donde sacar los padres.
58 * @param DB $db Base de datos.
63 function iniciar(&$obj, $accion, $arbol, $db) // ~X2C
65 $tipo = substr(get_class($obj), 3);
66 $s_tipo = ucfirst($tipo);
67 if ($tipo == 'gruposecciones') {
69 $s_tipo = 'Grupo de Secciones';
71 $padre = $tipo.'_padre';
77 $s_accion = 'Modificar';
81 $s_accion = 'Agregar';
83 // Construyo con el padre y seteos generales.
84 $this->setRendererOpts(array('width' => '400'));
85 $this->addElement('header','cabecera', $s_accion . ' ' . $s_tipo);
87 if ($tipo == 'sistema') {
88 require_once 'SAMURAI/Sistema.php';
89 $sistemas = array('' => '--');
90 $sistemas += AI_Sistema::getSistemasArray($db, false);
91 $fId =& $this->addElement('select', $tipo, 'Sistema', $sistemas);
92 $this->addRule($tipo, 'Debe ingresar un sistema.', 'required');
94 if ($accion & (AI_BAJA | AI_MODIF)) {
95 if ($tipo == 'sistema') {
96 $fId->setSelected($obj->$tipo);
98 $fId =& $this->addElement('text', $tipo, 'Identificador');
99 $fId->setValue($obj->$tipo);
103 if ($tipo == 'grupo' or $tipo == 'servicio') {
104 $tipos = array('' => '--', '0' => 'Página Principal')
106 // Saco el elemento actual si hay uno cargado (no puede ser padre de si mismo).
107 if ($accion & (AI_BAJA | AI_MODIF)) {
108 unset($tipos[$obj->$tipo]);
110 $fPadre =& $this->addElement('select', $padre, 'Padre', $tipos);
111 $fNombre =& $this->addElement('text', 'nombre', 'Nombre');
113 $this->addRule('nombre', 'Debe ingresar un nombre.', 'required');
114 $this->addRule($padre, 'Debe ingresar un padre.', 'required');
115 $this->addRule($padre, 'El padre debe ser un número natural.',
118 if ($accion & (AI_BAJA | AI_MODIF)) {
119 $fPadre->setSelected($obj->$padre);
120 $fNombre->setValue($obj->nombre);
123 if ($tipo == 'grupo') {
124 $fAntiguedad =& $this->addElement('select', 'antiguedad', 'Antigüedad',
125 array(3 => '3 días', 1 => '1 día', 7 => '1 semana'));
126 $fSecciones =& $this->addElement('select', 'secciones', 'Secciones',
127 AI_GrupoSecciones::getSeccionesArray($db),
128 array('multiple' => 'multiple', 'size' => 8));
129 $fMostrarHijos =& $this->addElement('checkbox', 'mostrar_hijos', 'Mostrar hijos');
131 $this->addRule('antiguedad', 'La antigüedad debe ser un número natural.',
134 if ($accion & (AI_BAJA | AI_MODIF)) {
135 $fAntiguedad->setSelected($obj->antiguedad);
136 $fSecciones->setSelected($obj->secciones);
137 $fMostrarHijos->setChecked($obj->mostrar_hijos);
140 if ($tipo == 'servicio') {
141 $fDescripcion =& $this->addElement('text', 'descripcion', 'Descripción');
142 $fLogueo =& $this->addElement('checkbox','logueo', 'Necesita login');
144 $this->addRule('descripcion', 'Debe ingresar una descripción.', 'required');
146 if ($accion & (AI_BAJA | AI_MODIF)) {
147 $fDescripcion->setValue($obj->descripcion);
148 $fLogueo->setChecked($obj->necesita_logueo);
151 if ($tipo == 'servicio' or $tipo == 'sistema') {
152 $fLink =& $this->addElement('text', 'link', 'Enlace');
153 $fLinkAyuda =& $this->addElement('text', 'link_ayuda', 'Enlace de la ayuda');
154 //$fIcono =& $this->addElement('text', 'icono', 'Ícono');
155 $fIcono =& $this->addElement('select', 'icono', 'Ícono',
156 listarArchivos('/var/www/sistemas/intranet/www/images', $tipo . '_', '\.gif'));
158 if ($accion & (AI_BAJA | AI_MODIF)) {
159 $fLink->setValue($obj->link);
160 $fLinkAyuda->setValue($obj->link_ayuda);
161 $fIcono->setValue($obj->icono);
164 if ($tipo == 'sistema') {
165 $this->addRule('link', 'Debe ingresar un nombre.', 'required');
166 $this->addRule('icono', 'Debe ingresar un ícono.', 'required');
169 $fHabilitado =& $this->addElement('checkbox','habilitado', 'Está habilitado',
170 '', array('checked' => 'checked'));
172 if ($accion & (AI_BAJA | AI_MODIF)) {
173 $fHabilitado->setChecked($obj->habilitado);
176 $fBtnAccion =& parent::createElement('submit', 'aceptar' , $s_accion);
177 if ($accion & AI_MODIF) {
178 $fBtnCancelar =& parent::createElement('submit', 'modificar' , 'Borrar');
179 } elseif ($accion & AI_ALTA) {
180 $fBtnCancelar =& parent::createElement('reset', 'agregar', 'Limpiar');
181 } elseif ($accion & AI_BAJA) {
182 $fBtnCancelar =& parent::createElement('submit', 'borrar', 'Cancelar');
188 $this->addGroup($grupo, 'botones');
192 // +X2C Operation 510
194 * Llena un objeto con los datos del formulario.
196 * @param mixed &$obj Objeto a llenar con los datos del formulario. Puede ser GrupoSecciones, Servicio o Sistema.
201 function llenarObjeto(&$obj) // ~X2C
203 $tipo = substr(get_class($obj), 3);
204 if ($tipo == 'gruposecciones') {
207 $padre = $tipo.'_padre';
209 $obj->$tipo = $this->getSubmitValue($tipo);
210 $obj->habilitado = $this->getSubmitValue('habilitado');
211 if ($tipo == 'grupo' or $tipo == 'servicio') {
212 $obj->$padre = $this->getSubmitValue($padre);
213 $obj->nombre = $this->getSubmitValue('nombre');
215 if ($tipo == 'grupo') {
216 $obj->antiguedad = $this->getSubmitValue('antiguedad');
217 $obj->secciones = $this->getSubmitValue('secciones');
218 $obj->mostrar_hijos = $this->getSubmitValue('mostrar_hijos');
220 if ($tipo == 'servicio') {
221 $obj->descripcion = $this->getSubmitValue('descripcion');
222 $obj->necesita_logueo = $this->getSubmitValue('logueo');
224 if ($tipo == 'servicio' or $tipo == 'sistema') {
225 $obj->link = $this->getSubmitValue('link');
226 $obj->link_ayuda = $this->getSubmitValue('link_ayuda');
227 $obj->icono = $this->getSubmitValue('icono');
232 } // -X2C Class :AI_Form