X-Git-Url: https://git.llucax.com/mecon/ai.git/blobdiff_plain/ebcac5bed3516264f417de12f9255f22df215f0b..5a7d316bd32d92dfdd72f118cd544e13a27b98cd:/sistema/local_lib/AI/Form.php?ds=inline diff --git a/sistema/local_lib/AI/Form.php b/sistema/local_lib/AI/Form.php index ea7c5c8..52c565e 100644 --- a/sistema/local_lib/AI/Form.php +++ b/sistema/local_lib/AI/Form.php @@ -27,10 +27,7 @@ // $Id$ // -// +X2C includes require_once 'MECON/HTML/QuickForm.php'; -// ~X2C - require_once 'general.php'; // Definicion de acciones. @@ -38,7 +35,6 @@ define('AI_ALTA', 1); define('AI_BAJA', 2); define('AI_MODIF', 4); -// +X2C Class 507 :AI_Form /** * Formularios para el Administrador de Intranet. * @@ -46,20 +42,20 @@ define('AI_MODIF', 4); * @access public */ class AI_Form 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 AI_ALTA, AI_BAJA o AI_MODIFICACION. + * @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 AI_ALTA, AI_BAJA o AI_MODIFICACION. * @param DB $db Base de datos a usar. * * @return void * @access public */ - function iniciar(&$obj, $accion, $db) // ~X2C + function iniciar(&$obj, $accion, $db) { $tipo = substr(get_class($obj), 3); $s_tipo = ucfirst($tipo); @@ -82,7 +78,8 @@ class AI_Form extends MECON_HTML_QuickForm { // Construyo con el padre y seteos generales. $this->renderer->updateAttributes(array('width' => '400')); $this->addElement('header','cabecera', $s_accion . ' ' . $s_tipo); - // Elementos. + // Elementos: + // ID. if ($tipo == 'sistema') { require_once 'SAMURAI/Sistema.php'; $sistemas = array('' => '--'); @@ -105,6 +102,7 @@ class AI_Form extends MECON_HTML_QuickForm { } $fId->freeze(); } + // Padre / Nombre. if ($tipo == 'grupo' or $tipo == 'servicio') { require_once 'AI/Arbol.php'; $arbol = new AI_Arbol($obj, $db, true); @@ -127,6 +125,7 @@ class AI_Form extends MECON_HTML_QuickForm { $fNombre->setValue($obj->nombre); } } + // Antigüedad / Secciones / Mostrar Hijos. if ($tipo == 'grupo') { $fAntiguedad =& $this->addElement('select', 'antiguedad', 'Antigüedad', array(3 => '3 días', 1 => '1 día', 7 => '1 semana')); @@ -144,17 +143,21 @@ class AI_Form extends MECON_HTML_QuickForm { $fMostrarHijos->setChecked($obj->mostrar_hijos); } } + // Descripción / Necesita Logueo. if ($tipo == 'servicio') { $fDescripcion =& $this->addElement('text', 'descripcion', 'Descripción'); $fLogueo =& $this->addElement('checkbox','logueo', 'Necesita login'); + $fVentana =& $this->addElement('checkbox','ventana', 'Abrir en ventana nueva'); // Validación $this->addRule('descripcion', 'Debe ingresar una descripción.', 'required'); // Carga datos. if ($accion & (AI_BAJA | AI_MODIF)) { $fDescripcion->setValue($obj->descripcion); $fLogueo->setChecked($obj->necesita_logueo); + $fVentana->setChecked($obj->ventana_nueva); } } + // Link / Link Ayuda. if ($tipo == 'servicio' or $tipo == 'sistema') { $fLink =& $this->addElement('text', 'link', 'Enlace'); $fLinkAyuda =& $this->addElement('text', 'link_ayuda', 'Enlace de la ayuda'); @@ -173,10 +176,18 @@ class AI_Form extends MECON_HTML_QuickForm { $this->addRule('icono', 'Debe ingresar un ícono.', 'required'); } } + // Tipo de sistema. + if ($tipo == 'sistema') { + $fTipo =& $this->addElement('checkbox', 'tipo', 'Usa EmbPerl'); + // Carga datos. + if ($accion & (AI_BAJA | AI_MODIF)) { + $fTipo->setChecked($obj->tipo == 'embperl'); + } + } + // Habilitado. $fHabilitado =& $this->addElement('checkbox','habilitado', 'Está habilitado', '', array('checked' => 'checked')); - // Carga datos. - if ($accion & (AI_BAJA | AI_MODIF)) { + if ($accion & (AI_BAJA | AI_MODIF)) { // Carga datos. $fHabilitado->setChecked($obj->habilitado); } // Botones. @@ -194,18 +205,17 @@ class AI_Form extends MECON_HTML_QuickForm { ); $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. + * @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 + function llenarObjeto(&$obj) { $tipo = substr(get_class($obj), 3); if ($tipo == 'gruposecciones') { @@ -227,6 +237,10 @@ class AI_Form extends MECON_HTML_QuickForm { if ($tipo == 'servicio') { $obj->descripcion = $this->getSubmitValue('descripcion'); $obj->necesita_logueo = $this->getSubmitValue('logueo'); + $obj->ventana_nueva = $this->getSubmitValue('ventana'); + } + if ($tipo == 'sistema') { + $obj->tipo = $this->getSubmitValue('tipo') ? 'embperl' : 'php'; } if ($tipo == 'servicio' or $tipo == 'sistema') { $obj->link = $this->getSubmitValue('link'); @@ -234,8 +248,7 @@ class AI_Form extends MECON_HTML_QuickForm { $obj->icono = $this->getSubmitValue('icono'); } } - // -X2C -} // -X2C Class :AI_Form +} ?> \ No newline at end of file