// $Id$
//
+//VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{
+ if (!$SAMURAI_PERM->tiene(SAMURAI_DEVELOPER)) {
+// header('Location: error')
+ }
+//}}}
//REQUIRE ONCE {{{
//MECON {{{
require_once 'MECON/HTML/QuickForm.php';
require_once 'SAMURAI/Usuario.php';
require_once 'SAMURAI/Sistema.php';
//}}}
- require_once 'HTML/Image.php';
+ require_once 'MECON/HTML/Image.php';
// }}}
//VEO SI HAY QUE ELEGIR EN QUE SISTEMA TRABAJAR {{{
if (!@$_SESSION['samurai']['id_sistema'] || !@$_SESSION['samurai']['login']) {
$validar = 1;
$login = null;
}
- $TABLA = new Tabla ('cellspacing=0');
+ $TABLA = new MECON_HTML_Tabla ('cellspacing=0');
$FORM = new MECON_HTML_QuickForm ('usuarios_abm','post','usuarios-abm');
$SISTEMA = new SAMURAI_Sistema($DB, $_SESSION['samurai']['id_sistema']);
$USUARIO = new SAMURAI_Usuario($DB, $login);
}
//}}}
//AGREGO LOS DATOS A LAS TABLAS {{{
- $imagen = new HTML_Image('/MECON/images/vinetas_flecha_doble.gif');
+ $imagen = new MECON_HTML_Image('/MECON/images/vinetas_flecha_doble.gif');
$row = array ($imagen->toHtml().' <b>SISTEMA: '.$SISTEMA->getNombre().'</b>');
$TABLA->addRow($row,'align=left');
//}}}
}
$FORM->addElement ('select', 'perfiles' , 'Perfiles', $PERFILES, array('size' => '5', 'multiple' => 'true'));
$FORM->addElement ('hidden', 'responsable', $_SESSION['samurai']['login']);
- $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar', array ('onClick' => 'javascript:if (confirm(\'¿Esta Seguro?\')) return true;return false;'));
+ $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
$group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:window.location = \'usuarios\';return false;'));
$FORM->addGroup($group,'botones');
}
//ELIMINACION -> modifico el valor del boton
if ($_GET['accion'] == 'e') {
+ $aceptar->updateAttributes(array ('onClick' => 'javascript:if (confirm(\'¿Esta Seguro?\')) return true;return false;'));
$aceptar->setValue('Eliminar');
$FORM->freeze();
}
if ($aceptar->getValue() == 'Grabar') {
$res2 = $USUARIO->verificarAsociacionExistente();
}
- if (PEAR::isError($res)) {
+ if (@PEAR::isError($res)) {
$ERROR = new MECON_HTML_Error($res->getMessage());
}
- elseif (PEAR::isError($res2)) {
+ elseif (@PEAR::isError($res2)) {
$ERROR =new MECON_HTML_Error($res2->getMessage());
}
else {