$MARCO =& new MECON_Marco ('/var/www/sistemas/samurai/sistema/conf/confSecciones.php', $SAMURAI_PERM);
//}}}
+//XXX OBTENGO LA ACCION {{{
+switch (@$_REQUEST['accion']) {
+ case 'm':
+ $b_accion = 'Modificar';
+ $accion = 'm';
+ break;
+ case 'e':
+ $b_accion = 'Eliminar';
+ $accion = 'e';
+ break;
+ default:
+ $b_accion = 'Grabar';
+ $accion = '';
+ break;
+}
+//}}}
+
// REQUIRE_ONCE {{{
require_once 'MECON/HTML/QuickForm.php';
require_once 'MECON/HTML/Tabla.php';
require_once 'MECON/HTML/Image.php';
// }}}
//CREO LOS OBJETO NECESARIOS {{{
- if (@$_GET['id_perfil']) {
- $id_perfil = $_GET['id_perfil'];
+ if (@$_GET['_id_perfil']) {
+ $id_perfil = $_GET['_id_perfil'];
}
elseif (@$_POST['id_perfil']) {
$id_perfil = $_POST['id_perfil'];
$id_perfil = null;
}
$FORM = new MECON_HTML_QuickForm ('perfiles_abm','post','perfiles-abm');
+ $FORM->renderer->updateAttributes('width="400"');
$SISTEMA = new SAMURAI_Sistema ($DB, $_SESSION['samurai']['id_sistema']);
$PERFIL = new SAMURAI_Perfil ($DB, $id_perfil,
$_SESSION['samurai']['id_sistema']);
$responsable = $_SESSION['usuario'];
}
- if (!@$_GET['id_perfil']) {
+ if (!@$_GET['_id_perfil']) {
if (@$_GET['desc_perfil']) {
$PERFIL->setDescripcion(@$_GET['desc_perfil']);
}
$FORM->addElement ('static', 'desc_perfil', 'DescripciĆ³n', $descripcion);
$FORM->addElement ('select', 'permisos' , 'Permisos' , $PERMISOS, array('size' => '5', 'multiple' => 'true'));
$FORM->addElement ('hidden', 'responsable', $responsable);
- $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
+ $FORM->addElement ('hidden', 'accion', $accion);
+ $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , $b_accion);
$group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:window.location=\'perfiles\';return false;'));
$FORM->addGroup($group,'botones');
}