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. |
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('MODIFICACION', 4);
39 // +X2C Class 507 :AIForm
41 * Formularios para el Administrador de Intranet.
45 class AIForm 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 ALTA, BAJA o MODIFICACION.
58 function iniciar(&$obj, $accion = ALTA) // ~X2C
60 $clase = get_class($obj);
61 $padre = $clase.'_padre';
67 $s_accion = 'Modificar';
71 $s_accion = 'Agregar';
73 // Construyo con el padre y seteos generales.
74 $this->setRendererOpts(array('width' => '400'));
75 $this->addElement('header','cabecera', "$s_accion Servicio");
77 if ($accion & (BAJA | MODIFICACION)) {
78 $fId =& $this->addElement('text', $clase, 'Identificador');
79 $fId->setValue($obj->$clase);
82 if ($clase == 'grupo' or $clase == 'servicio') {
83 $fPadre =& $this->addElement('text', $padre, 'Servicio padre');
84 $fNombre =& $this->addElement('text', 'nombre', 'Nombre');
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.',
91 if ($accion & (BAJA | MODIFICACION)) {
92 $fPadre->setValue($obj->$padre);
93 $fNombre->setValue($obj->nombre);
96 if ($clase == 'servicio') {
97 $fDescripcion =& $this->addElement('text', 'descripcion', 'Descripción');
98 $fLogueo =& $this->addElement('checkbox','logueo', 'Necesita login');
100 $this->addRule('descripcion', 'Debe ingresar una descripción.', 'required');
102 if ($accion & (BAJA | MODIFICACION)) {
103 $fDescripcion->setValue($obj->descripcion);
104 $fLogueo->setValue($obj->necesita_logueo);
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');
112 if ($accion & (BAJA | MODIFICACION)) {
113 $fLink->setValue($obj->link);
114 $fLinkAyuda->setValue($obj->link_ayuda);
115 $fIcono->setValue($obj->icono);
118 $fHabilitado =& $this->addElement('checkbox','habilitado', 'Está habilitado',
119 '', array('checked' => 'checked'));
121 if ($accion & (BAJA | MODIFICACION)) {
122 $fHabilitado->setValue($obj->habilitado);
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');
137 $this->addGroup($grupo, 'botones');
141 // +X2C Operation 510
143 * Llena un objeto con los datos del formulario.
145 * @param mixed &$obj Objeto a llenar con los datos del formulario. Puede ser GrupoSecciones, Servicio o Sistema.
150 function llenarObjeto(&$obj) // ~X2C
152 $clase = get_class($obj);
153 $padre = $clase.'_padre';
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');
161 if ($clase == 'servicio') {
162 $obj->descripcion = $this->getSubmitValue('descripcion');
163 $obj->necesita_logueo = $this->getSubmitValue('logueo');
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');
173 } // -X2C Class :AIForm