//
// $Id$
//
+//VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{
+$SAMURAI_PERM->setSistema(SAMURAI_PERM);
+if (!$SAMURAI_PERM->tiene(SAMURAI_PERM_DEVELOPER)) {
+ $SAMURAI_PERM->chequear(SAMURAI_PERM_DEVELOPER);
+}
+$MARCO =& new MECON_Marco ('/var/www/sistemas/samurai/sistema/conf/confSecciones.php', $SAMURAI_PERM);
+//}}}
//REQUIRE_ONCE {{{
//MECON {{{
$FORM->addElement ('header', 'cabecera', 'ABM Permisos');
$FORM->addElement ('hidden', 'id_permiso');
$FORM->addElement ('text' , 'desc_permiso', 'Descripcion', array('size'=>'50'));
- $FORM->addElement ('static', 'responsable' , 'Responsable', $_SESSION['samurai']['login']);
+ $FORM->addElement ('hidden', 'responsable' , $_SESSION['usuario']);
$group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
- $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:history.go(-1);return true;'));
+ $group[] = HTML_QuickForm::createElement('button', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:history.go(-1);return true;'));
$FORM->addGroup($group,'botones');
// }}}
//AGREGO LAS REGLAS DE VALIDACION DE LOS ELEMENTOS {{{
//ELIMINACION -> modifico el valor del boton
if ($_GET['accion'] == 'e') {
$aceptar->setValue('Eliminar');
+ $aceptar->updateAttributes(array ('onClick' => 'javascript:if (confirm(\'¿Esta Seguro?\')) return true;return false;'));
$FORM->freeze();
}
}
// VEO SI SE CANCELO {{{
$botones = $FORM->getSubmitValue('botones');
if (@$botones['cancelar']) {
- header('Location: perfiles');
+ header('Location: permisos');
}
// }}}
$desc_permiso =& $FORM->getElement ('desc_permiso');
$aceptar =& $group[0];
$PERMISO->setDescripcion($desc_permiso->getValue());
- $PERMISO->setResponsable($responsable->_text); //TODO URGENTE Modificar esto. No tiene metodo static::getValue()
+ $PERMISO->setResponsable($responsable->getValue());
//Verifico si se produjo algun error
$res = $PERMISO->guardarDatos($aceptar->getValue());
if (PEAR::isError($res)) {
- $ERROR = new MECON_HTML_Error($res->getMessage());
+ $ERROR = new MECON_HTML_Error(traducir($res->getMessage()));
if ($aceptar->getValue() == 'Eliminar') {
$FORM->freeze();
}
}
// }}}
//DIBUJO LA PAGINA {{{
- $MARCO = new Marco ('../../conf/confSecciones.php');
$MARCO->addTitle('ABM Permisos');
if (isset($ERROR)) {
$MARCO->addBody($ERROR);