| // +--------------------------------------------------------------------+ // // $Id$ // // +X2C includes require_once 'MECON/HTML/QuickForm.php'; // ~X2C // Definicion de acciones. define('ALTA', 1); define('BAJA', 2); define('MODIFICACION', 4); // +X2C Class 507 :AIForm /** * Formularios para el Administrador de Intranet. * * @access public */ class AIForm extends MECON_HTML_QuickForm { // ~X2C // +X2C Operation 509 /** * Construye un formulario para el objecto especificado. * * @param object &$obj Objeto con el cual rellenar el formulario. Puede ser GrupoSecciones, Servicio o Sistema. * @param int $accion Accion que realizar?el formulario a crear. Puede ser ALTA, BAJA o MODIFICACION. * * @return void * @access public */ function iniciar(&$obj, $accion = ALTA) // ~X2C { $clase = get_class($obj); $padre = $clase.'_padre'; switch ($accion) { case BAJA: $s_accion = 'Borrar'; break; case MODIFICACION: $s_accion = 'Modificar'; break; default: $accion = ALTA; $s_accion = 'Agregar'; } // Construyo con el padre y seteos generales. $this->setRendererOpts(array('width' => '400')); $this->addElement('header','cabecera', "$s_accion Servicio"); // Elementos. if ($accion & (BAJA | MODIFICACION)) { $fId =& $this->addElement('text', $clase, 'Identificador'); $fId->setValue($obj->$clase); $fId->freeze(); } if ($clase == 'grupo' or $clase == 'servicio') { $fPadre =& $this->addElement('text', $padre, 'Servicio padre'); $fNombre =& $this->addElement('text', 'nombre', 'Nombre'); // Validación. $this->addRule('nombre','Debe ingresar un nombre.', 'required'); $this->addRule($padre, 'Debe ingresar un servicio padre.', 'required'); $this->addRule($padre, 'El servicio padre debe ser un número natural.', 'regex', '/^\d*$/'); // Carga datos. if ($accion & (BAJA | MODIFICACION)) { $fPadre->setValue($obj->$padre); $fNombre->setValue($obj->nombre); } } if ($clase == 'servicio') { $fDescripcion =& $this->addElement('text', 'descripcion', 'Descripción'); $fLogueo =& $this->addElement('checkbox','logueo', 'Necesita login'); // Validación $this->addRule('descripcion', 'Debe ingresar una descripción.', 'required'); // Carga datos. if ($accion & (BAJA | MODIFICACION)) { $fDescripcion->setValue($obj->descripcion); $fLogueo->setValue($obj->necesita_logueo); } } if ($clase == 'servicio' or $clase == 'sistema') { $fLink =& $this->addElement('text', 'link', 'Enlace'); $fLinkAyuda =& $this->addElement('text', 'link_ayuda', 'Enlace de la ayuda'); $fIcono =& $this->addElement('text', 'icono', 'Ícono'); // Carga datos. if ($accion & (BAJA | MODIFICACION)) { $fLink->setValue($obj->link); $fLinkAyuda->setValue($obj->link_ayuda); $fIcono->setValue($obj->icono); } } $fHabilitado =& $this->addElement('checkbox','habilitado', 'Está habilitado', '', array('checked' => 'checked')); // Carga datos. if ($accion & (BAJA | MODIFICACION)) { $fHabilitado->setValue($obj->habilitado); } // Botones. $fBtnAccion =& parent::createElement('submit', 'aceptar' , $s_accion); if ($accion & MODIFICACION) { $fBtnCancelar =& parent::createElement('submit', 'modificar' , 'Borrar'); } elseif ($accion & ALTA) { $fBtnCancelar =& parent::createElement('reset', 'agregar', 'Limpiar'); } elseif ($accion & BAJA) { $fBtnCancelar =& parent::createElement('submit', 'borrar', 'Cancelar'); } $grupo = array( &$fBtnAccion, &$fBtnCancelar, ); $this->addGroup($grupo, 'botones'); } // -X2C // +X2C Operation 510 /** * Llena un objeto con los datos del formulario. * * @param mixed &$obj Objeto a llenar con los datos del formulario. Puede ser GrupoSecciones, Servicio o Sistema. * * @return void * @access public */ function llenarObjeto(&$obj) // ~X2C { $clase = get_class($obj); $padre = $clase.'_padre'; // Elementos. $obj->$clase = $this->getSubmitValue($clase); $obj->habilitado = $this->getSubmitValue('habilitado'); if ($clase == 'grupo' or $clase == 'servicio') { $obj->$padre = $this->getSubmitValue($padre); $obj->nombre = $this->getSubmitValue('nombre'); } if ($clase == 'servicio') { $obj->descripcion = $this->getSubmitValue('descripcion'); $obj->necesita_logueo = $this->getSubmitValue('logueo'); } if ($clase == 'servicio' or $clase == 'sistema') { $obj->link = $this->getSubmitValue('link'); $obj->link_ayuda = $this->getSubmitValue('link_ayuda'); $obj->icono = $this->getSubmitValue('icono'); } } // -X2C } // -X2C Class :AIForm ?>