]> git.llucax.com Git - mecon/ai.git/blob - sistema/local_lib/AIForm.php
Se termina la primera versión funcional de servicios.
[mecon/ai.git] / sistema / local_lib / AIForm.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('ALTA',          1);
36 define('BAJA',          2);
37 define('MODIFICACION',  4);
38
39 // +X2C Class 507 :AIForm
40 /**
41  * Formularios para el Administrador de Intranet.
42  *
43  * @access public
44  */
45 class AIForm 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 ALTA, BAJA o MODIFICACION.
54      *
55      * @return void
56      * @access public
57      */
58     function iniciar(&$obj, $accion = ALTA) // ~X2C
59     {
60         $clase = get_class($obj);
61         $padre = $clase.'_padre';
62         switch ($accion) {
63             case BAJA:
64                 $s_accion = 'Borrar';
65                 break;
66             case MODIFICACION:
67                 $s_accion = 'Modificar';
68                 break;
69             default:
70                 $accion   = ALTA;
71                 $s_accion = 'Agregar';
72         }
73         // Construyo con el padre y seteos generales.
74         $this->setRendererOpts(array('width' => '400'));
75         $this->addElement('header','cabecera', "$s_accion Servicio");
76         // Elementos.
77         if ($accion & (BAJA | MODIFICACION)) {
78             $fId =& $this->addElement('text', $clase, 'Identificador');
79             $fId->setValue($obj->$clase);
80             $fId->freeze();
81         }
82         if ($clase == 'grupo' or $clase == 'servicio') {
83             $fPadre  =& $this->addElement('text', $padre, 'Servicio padre');
84             $fNombre =& $this->addElement('text', 'nombre', 'Nombre');
85             // Validación.
86             $this->addRule('nombre','Debe ingresar un nombre.',         'required');
87             $this->addRule($padre, 'Debe ingresar un servicio padre.', 'required');
88             $this->addRule($padre, 'El servicio padre debe ser un número natural.',
89                 'regex', '/^\d*$/');
90             // Carga datos.
91             if ($accion & (BAJA | MODIFICACION)) {
92                 $fPadre->setValue($obj->$padre);
93                 $fNombre->setValue($obj->nombre);
94             }
95         }
96         if ($clase == 'servicio') {
97             $fDescripcion =& $this->addElement('text', 'descripcion', 'Descripción');
98             $fLogueo      =& $this->addElement('checkbox','logueo', 'Necesita login');
99             // Validación
100             $this->addRule('descripcion',   'Debe ingresar una descripción.',   'required');
101             // Carga datos.
102             if ($accion & (BAJA | MODIFICACION)) {
103                 $fDescripcion->setValue($obj->descripcion);
104                 $fLogueo->setValue($obj->necesita_logueo);
105             }
106         }
107         if ($clase == 'servicio' or $clase == 'sistema') {
108             $fLink      =& $this->addElement('text', 'link', 'Enlace');
109             $fLinkAyuda =& $this->addElement('text', 'link_ayuda', 'Enlace de la ayuda');
110             $fIcono     =& $this->addElement('text', 'icono', 'Ícono');
111             // Carga datos.
112             if ($accion & (BAJA | MODIFICACION)) {
113                 $fLink->setValue($obj->link);
114                 $fLinkAyuda->setValue($obj->link_ayuda);
115                 $fIcono->setValue($obj->icono);
116             }
117         }
118         $fHabilitado =& $this->addElement('checkbox','habilitado', 'Está habilitado',
119             '', array('checked' => 'checked'));
120         // Carga datos.
121         if ($accion & (BAJA | MODIFICACION)) {
122             $fHabilitado->setValue($obj->habilitado);
123         }
124         // Botones.
125         $fBtnAccion =& parent::createElement('submit', 'aceptar' , $s_accion);
126         if ($accion & MODIFICACION) {
127             $fBtnCancelar =& parent::createElement('submit', 'modificar' , 'Borrar');
128         } elseif ($accion & ALTA) {
129             $fBtnCancelar =& parent::createElement('reset', 'agregar', 'Limpiar');
130         } elseif ($accion & BAJA) {
131             $fBtnCancelar =& parent::createElement('submit', 'borrar', 'Cancelar');
132         }
133         $grupo = array(
134             &$fBtnAccion,
135             &$fBtnCancelar,
136         );
137         $this->addGroup($grupo, 'botones');
138     }
139     // -X2C
140
141     // +X2C Operation 510
142     /**
143      * Llena un objeto con los datos del formulario.
144      *
145      * @param  mixed &$obj Objeto a llenar con los datos del formulario. Puede ser GrupoSecciones, Servicio o Sistema.
146      *
147      * @return void
148      * @access public
149      */
150     function llenarObjeto(&$obj) // ~X2C
151     {
152         $clase = get_class($obj);
153         $padre = $clase.'_padre';
154         // Elementos.
155         $obj->$clase = $this->getSubmitValue($clase);
156         $obj->habilitado = $this->getSubmitValue('habilitado');
157         if ($clase == 'grupo' or $clase == 'servicio') {
158             $obj->$padre = $this->getSubmitValue($padre);
159             $obj->nombre = $this->getSubmitValue('nombre');
160         }
161         if ($clase == 'servicio') {
162             $obj->descripcion     = $this->getSubmitValue('descripcion');
163             $obj->necesita_logueo = $this->getSubmitValue('logueo');
164         }
165         if ($clase == 'servicio' or $clase == 'sistema') {
166             $obj->link       = $this->getSubmitValue('link');
167             $obj->link_ayuda = $this->getSubmitValue('link_ayuda');
168             $obj->icono      = $this->getSubmitValue('icono');
169         }
170     }
171     // -X2C
172
173 } // -X2C Class :AIForm
174
175 ?>