]> git.llucax.com Git - mecon/ai.git/blob - lib/AI/Form.php
Se borran directorios que no se van a usar.
[mecon/ai.git] / lib / AI / Form.php
1 <?php
2 // vim: set 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.                                           |
8 // |                                                                    |
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.                             |
13 // |                                                                    |
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.                           |
18 // |                                                                    |
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 // +--------------------------------------------------------------------+
26 //
27 // $Id$
28 //
29
30 // +X2C includes
31 require_once 'MECON/HTML/QuickForm.php';
32 // ~X2C
33
34 // Definicion de acciones.
35 define('AI_ALTA',   1);
36 define('AI_BAJA',   2);
37 define('AI_MODIF',  4);
38
39 // +X2C Class 507 :AI_Form
40 /**
41  * Formularios para el Administrador de Intranet.
42  *
43  * @access public
44  */
45 class AI_Form extends MECON_HTML_QuickForm {
46     // ~X2C
47
48     // +X2C Operation 509
49     /**
50      * Construye un formulario para el objecto especificado.
51      *
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_MODIF.
54      *
55      * @return void
56      * @access public
57      */
58     function iniciar(&$obj, $accion = AI_ALTA) // ~X2C
59     {
60         $tipo   = substr(get_class($obj), 3);
61         $s_tipo = ucfirst($tipo);
62         if ($tipo == 'gruposecciones') {
63             $tipo   = 'grupo';
64             $s_tipo = 'Grupo de Secciones';
65         }
66         $padre = $tipo.'_padre';
67         switch ($accion) {
68             case AI_BAJA:
69                 $s_accion = 'Borrar';
70                 break;
71             case AI_MODIF:
72                 $s_accion = 'Modificar';
73                 break;
74             default:
75                 $accion   = AI_ALTA;
76                 $s_accion = 'Agregar';
77         }
78         // Construyo con el padre y seteos generales.
79         $this->setRendererOpts(array('width' => '400'));
80         $this->addElement('header','cabecera', $s_accion . ' ' . $s_tipo);
81         // Elementos.
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);
86         }
87         if ($accion & (AI_BAJA | AI_MODIF)) {
88             if ($tipo == 'sistema') {
89                 $fId->setSelected($obj->$tipo);
90             } else {
91                 $fId =& $this->addElement('text', $tipo, 'Identificador');
92                 $fId->setValue($obj->$tipo);
93             }
94             $fId->freeze();
95         }
96         if ($tipo == 'grupo' or $tipo == 'servicio') {
97             $fPadre  =& $this->addElement('text', $padre, 'Padre');
98             $fNombre =& $this->addElement('text', 'nombre', 'Nombre');
99             // Validación.
100             $this->addRule('nombre', 'Debe ingresar un nombre.', 'required');
101             $this->addRule($padre, 'Debe ingresar un padre.', 'required');
102             $this->addRule($padre, 'El padre debe ser un número natural.',
103                 'regex', '/^\d*$/');
104             // Carga datos.
105             if ($accion & (AI_BAJA | AI_MODIF)) {
106                 $fPadre->setValue($obj->$padre);
107                 $fNombre->setValue($obj->nombre);
108             }
109         }
110         if ($tipo == 'grupo') {
111             $fAntiguedad   =& $this->addElement('text', 'antiguedad', 'Antigüedad');
112             $fSecciones    =& $this->addElement('select', 'secciones', 'Secciones',
113                 array(1=>'test1', 'test2', 'test3', 'test4', 'test5', 'test6', 'test7', 'test8'),
114                 array('multiple' => 'multiple', 'size' => 5));
115             $fMostrarHijos =& $this->addElement('checkbox', 'mostrar_hijos', 'Mostrar hijos');
116             // Validación.
117             $this->addRule('antiguedad', 'La antigüedad debe ser un número natural.',
118                 'regex', '/^\d*$/');
119             // Carga datos.
120             if ($accion & (AI_BAJA | AI_MODIF)) {
121                 $fAntiguedad->setValue($obj->antiguedad);
122                 $fSecciones->setSelected($obj->secciones);
123                 $fMostrarHijos->setChecked($obj->mostrar_hijos);
124             }
125         }
126         if ($tipo == 'servicio') {
127             $fDescripcion =& $this->addElement('text', 'descripcion', 'Descripción');
128             $fLogueo      =& $this->addElement('checkbox','logueo', 'Necesita login');
129             // Validación
130             $this->addRule('descripcion',   'Debe ingresar una descripción.',   'required');
131             // Carga datos.
132             if ($accion & (AI_BAJA | AI_MODIF)) {
133                 $fDescripcion->setValue($obj->descripcion);
134                 $fLogueo->setChecked($obj->necesita_logueo);
135             }
136         }
137         if ($tipo == 'servicio' or $tipo == 'sistema') {
138             $fLink      =& $this->addElement('text', 'link', 'Enlace');
139             $fLinkAyuda =& $this->addElement('text', 'link_ayuda', 'Enlace de la ayuda');
140             $fIcono     =& $this->addElement('text', 'icono', 'Ícono');
141             // Carga datos.
142             if ($accion & (AI_BAJA | AI_MODIF)) {
143                 $fLink->setValue($obj->link);
144                 $fLinkAyuda->setValue($obj->link_ayuda);
145                 $fIcono->setValue($obj->icono);
146             }
147             // Validación.
148             if ($tipo == 'sistema') {
149                 $this->addRule('link',  'Debe ingresar un nombre.', 'required');
150                 $this->addRule('icono', 'Debe ingresar un ícono.',  'required');
151             }
152         }
153         $fHabilitado =& $this->addElement('checkbox','habilitado', 'Está habilitado',
154             '', array('checked' => 'checked'));
155         // Carga datos.
156         if ($accion & (AI_BAJA | AI_MODIF)) {
157             $fHabilitado->setChecked($obj->habilitado);
158         }
159         // Botones.
160         $fBtnAccion =& parent::createElement('submit', 'aceptar' , $s_accion);
161         if ($accion & AI_MODIF) {
162             $fBtnCancelar =& parent::createElement('submit', 'modificar' , 'Borrar');
163         } elseif ($accion & AI_ALTA) {
164             $fBtnCancelar =& parent::createElement('reset', 'agregar', 'Limpiar');
165         } elseif ($accion & AI_BAJA) {
166             $fBtnCancelar =& parent::createElement('submit', 'borrar', 'Cancelar');
167         }
168         $grupo = array(
169             &$fBtnAccion,
170             &$fBtnCancelar,
171         );
172         $this->addGroup($grupo, 'botones');
173     }
174     // -X2C
175
176     // +X2C Operation 510
177     /**
178      * Llena un objeto con los datos del formulario.
179      *
180      * @param  mixed &$obj Objeto a llenar con los datos del formulario. Puede ser GrupoSecciones, Servicio o Sistema.
181      *
182      * @return void
183      * @access public
184      */
185     function llenarObjeto(&$obj) // ~X2C
186     {
187         $tipo  = substr(get_class($obj), 3);
188         if ($tipo == 'gruposecciones') {
189             $tipo = 'grupo';
190         }
191         $padre = $tipo.'_padre';
192         // Elementos.
193         $obj->$tipo = $this->getSubmitValue($tipo);
194         $obj->habilitado = $this->getSubmitValue('habilitado');
195         if ($tipo == 'grupo' or $tipo == 'servicio') {
196             $obj->$padre = $this->getSubmitValue($padre);
197             $obj->nombre = $this->getSubmitValue('nombre');
198         }
199         if ($tipo == 'grupo') {
200             $obj->antiguedad    = $this->getSubmitValue('antiguedad');
201             $obj->secciones     = $this->getSubmitValue('secciones');
202             $obj->mostrar_hijos = $this->getSubmitValue('mostrar_hijos');
203         }
204         if ($tipo == 'servicio') {
205             $obj->descripcion     = $this->getSubmitValue('descripcion');
206             $obj->necesita_logueo = $this->getSubmitValue('logueo');
207         }
208         if ($tipo == 'servicio' or $tipo == 'sistema') {
209             $obj->link       = $this->getSubmitValue('link');
210             $obj->link_ayuda = $this->getSubmitValue('link_ayuda');
211             $obj->icono      = $this->getSubmitValue('icono');
212         }
213     }
214     // -X2C
215
216 } // -X2C Class :AI_Form
217
218 ?>