2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4 foldmethod=marker:
3 // +----------------------------------------------------------------------+
5 // +----------------------------------------------------------------------+
6 // | Copyright (c) 1997-2003 The PHP Group |
7 // +----------------------------------------------------------------------+
8 // | This source file is subject to version 2.02 of the PHP license, |
9 // | that is bundled with this package in the file LICENSE, and is |
10 // | available at through the world-wide-web at |
11 // | http://www.php.net/license/2_02.txt. |
12 // | If you did not receive a copy of the PHP license and are unable to |
13 // | obtain it through the world-wide-web, please send a note to |
14 // | license@php.net so we can mail you a copy immediately. |
15 // +----------------------------------------------------------------------+
16 // | Created: jue may 29 13:41:29 ART 2003
17 // | Author: Martin Marrese <mmarre@mecon.gov.ar>
18 // +----------------------------------------------------------------------+
25 require_once 'MECON/HTML/QuickForm.php';
26 require_once 'MECON/HTML/Error.php';
27 require_once 'MECON/HTML/Tabla.php';
30 require_once 'SAMURAI/Sistema.php';
31 require_once 'SAMURAI/Permiso.php';
34 //VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{
35 $SAMURAI_PERM->setSistema(SAMURAI_PERM);
36 if (!$SAMURAI_PERM->tiene(SAMURAI_PERM_DEVELOPER)) {
37 $SAMURAI_PERM->chequear(SAMURAI_PERM_DEVELOPER);
39 $MARCO =& new MECON_Marco ('/var/www/sistemas/samurai/sistema/conf/confSecciones.php', $SAMURAI_PERM);
41 //CREO LOS OBJETO NECESARIOS {{{
42 $FORM = new MECON_HTML_QuickForm ('sistemas_abm','post','sistemas-abm');
44 //OBTENGO LA LISTA DE PERMISOS {{{
45 $PERMISOS = SAMURAI_Permiso::getArrayPermisos($DB);
47 //AGREGO LOS ELEMENTOS DEL FORM {{{
48 $FORM->addElement ('header' , 'cabecera' , 'ABM Sistemas');
49 $FORM->addElement ('hidden' , 'id_sistema');
50 $FORM->addElement ('text' , 'nombre_sistema' , 'Nombre' , array('size' => '30'));
51 $FORM->addElement ('textarea', 'desc_sistema' , 'Descripcion' , array('rows' => '2','cols'=>'50', 'wrap'=>'virtual'));
52 $FORM->addElement ('mdate' , 'fecha_inicio' , 'Fecha Inicio' );
53 $FORM->addElement ('mdate' , 'fecha_fin' , 'Fecha Fin' );
54 $FORM->addElement ('mdate' , 'fecha_implementacion', 'Fecha Implementacion');
55 $FORM->addElement ('textarea', 'contacto' , 'Contacto' , array('rows' => '2','cols'=>'50'));
56 $FORM->addElement ('select' , 'permisos' , 'Permisos' , $PERMISOS, array('size' => '5', 'multiple' => 'multiple'));
57 $FORM->addElement ('hidden' , 'responsable' , $_SESSION['usuario']);
58 $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
59 $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:window.location =\'sistemas\';return false;'));
60 $FORM->addGroup($group,'botones');
62 //AGREGO LAS REGLAS DE VALIDACION DE LOS ELEMENTOS {{{
63 $botones = $FORM->getSubmitValue('botones');
64 if (!@$botones['cancelar']) {
65 $FORM->addRule('nombre_sistema' , 'El campo nombre es obligatorio' , 'required');
66 $FORM->addRule('desc_sistema' , 'El campo descripcion es obligatorio' , 'required');
67 $FORM->addRule('fecha_inicio' , 'El campo fecha inicio es obligatorio', 'required');
68 // if (isset($_GET['accion']) && $_GET['accion'] != 'e') {
69 $FORM->addRule('fecha_inicio' , 'La fecha no es válida', 'fecha');
70 $FORM->addRule('fecha_fin' , 'La fecha no es válida', 'fecha');
71 $FORM->addRule('fecha_implementacion', 'La fecha no es válida', 'fecha');
73 $FORM->addRule('contacto', 'El campo contacto es obligatorio', 'required');
76 //CREO EL OBJETO SISTEMA {{{
77 //Obtengo el id del sistema.
78 $idSistema =& $FORM->getElement('id_sistema');
80 if (isset($_GET['accion']) && $_GET['accion'] != '') {
81 //Viene en el get es -> modificar o eliminar, me ocupo yo.
82 $id_sistema = $_GET['idSistema'];
83 $idSistema->setValue($id_sistema);
86 //Viene en el post, no me ocupo yo.
87 $id_sistema = $idSistema->getValue();
90 $SISTEMA = new SAMURAI_Sistema ($DB, $id_sistema);
92 //SETEO LOS VALORES DE LOS ELEMENTOS DEL OBJETO FORM {{{
93 if (isset($_GET['accion']) && $_GET['accion'] != '') {
94 //MODIFICACION -> agrego la info a los elementos
95 $nombre_sistema =& $FORM->getElement ('nombre_sistema' );
96 $desc_sistema =& $FORM->getElement ('desc_sistema' );
97 $fecha_inicio =& $FORM->getElement ('fecha_inicio' );
98 $fecha_fin =& $FORM->getElement ('fecha_fin' );
99 $fecha_implementacion =& $FORM->getElement ('fecha_implementacion');
100 $contacto =& $FORM->getElement ('contacto' );
101 $permisos =& $FORM->getElement ('permisos' );
102 $responsable =& $FORM->getElement ('responsable' );
103 $group =& $FORM->getElement ('botones' );
104 $group =& $group->getElements('aceptar' );
105 $aceptar =& $group[0];
107 $nombre_sistema->setValue($SISTEMA->getNombre());
108 $desc_sistema->setValue ($SISTEMA->getDescripcion());
109 $contacto->setValue ($SISTEMA->getContacto());
111 if ($SISTEMA->getIdPermisos() != '') {
112 $permisos->setSelected($SISTEMA->getIdPermisos());
114 if ($SISTEMA->getResponsable() != '') {
115 $responsable->setValue($SISTEMA->getResponsable());
118 if ($tmp = $SISTEMA->getFechaInicio()) {
119 $fecha_inicio->setSelectedDate(array( 'd' => $tmp->format("%d"),
120 'F' => $tmp->format("%m"),
121 'Y' => $tmp->format("%Y"),
125 $fecha_inicio->setSelectedDate(array( 'd' => '',
132 if ($tmp = $SISTEMA->getFechaFin()) {
133 $fecha_fin->setSelectedDate(array( 'd' => $tmp->format("%d"),
134 'F' => $tmp->format("%m"),
135 'Y' => $tmp->format("%Y"),
139 $fecha_fin->setSelectedDate(array( 'd' => '',
145 if ($tmp = $SISTEMA->getFechaImplementacion()) {
146 $fecha_implementacion->setSelectedDate(array( 'd' => $tmp->format("%d"),
147 'F' => $tmp->format("%m"),
148 'Y' => $tmp->format("%Y"),
152 $fecha_implementacion->setSelectedDate(array( 'd' => '',
158 $aceptar->setValue('Modificar');
160 //ELIMINACION -> modifico el valor del boton
161 if ($_GET['accion'] == 'e') {
162 $aceptar->setValue('Eliminar');
163 $aceptar->updateAttributes(array ('onClick' => 'javascript:if (confirm(\'¿Esta Seguro?\')) return true;return false;'));
168 //VALIDO EL FORMULARIO {{{
169 if ($FORM->validate()) {
170 $nombre_sistema =& $FORM->getElement ('nombre_sistema' );
171 $desc_sistema =& $FORM->getElement ('desc_sistema' );
172 $fecha_inicio =& $FORM->getElement ('fecha_inicio' );
173 $fecha_fin =& $FORM->getElement ('fecha_fin' );
174 $fecha_implementacion =& $FORM->getElement ('fecha_implementacion');
175 $contacto =& $FORM->getElement ('contacto' );
176 $permisos =& $FORM->getElement ('permisos' );
177 $responsable =& $FORM->getElement ('responsable' );
178 $group =& $FORM->getElement ('botones' );
179 $group =& $group->getElements('aceptar' );
180 $aceptar =& $group[0];
182 $SISTEMA->setNombre ($nombre_sistema->getValue());
183 $SISTEMA->setDescripcion($desc_sistema->getValue());
185 $f1 =& $fecha_inicio->getValue();
186 $f2 =& $fecha_fin->getValue();
187 $f3 =& $fecha_implementacion->getValue();
191 $SISTEMA->setFechaInicio($f1->format("%Y-%m-%d"));
194 $SISTEMA->setFechaInicio();
197 $SISTEMA->setFechaFin($f2->format("%Y-%m-%d"));
200 $SISTEMA->setFechaFin();
203 $SISTEMA->setFechaImplementacion($f3->format("%Y-%m-%d"));
206 $SISTEMA->setFechaImplementacion();
208 $SISTEMA->setContacto($contacto->getValue());
209 $SISTEMA->setPermisos($permisos->getSelected());
210 $SISTEMA->setResponsable($responsable->getValue());
211 $botones = $FORM->getSubmitValue('botones');
212 if (@$botones['cancelar']) {
213 header ('Location: sistemas');
216 $res = $SISTEMA->guardarDatos($aceptar->getValue());
217 if ($aceptar->getValue() != 'Eliminar') {
218 $_SESSION['samurai']['id_sistema'] = $SISTEMA->getId();
220 if (PEAR::isError($res)) {
221 $ERROR = new MECON_HTML_Error(traducir($res->getMessage()));
225 header('Location: sistemas');
231 //DIBUJO LA PAGINA {{{
232 $MARCO->addTitle('ABM Sistema');
234 $MARCO->addBody($ERROR);
236 $MARCO->addBody($FORM);