// REQUIRE_ONCE {{{
require_once 'MECON/HTML/QuickForm.php';
require_once 'MECON/HTML/Tabla.php';
+ require_once 'MECON/HTML/Error.php';
require_once 'SAMURAI/Perfil.php';
require_once 'SAMURAI/Permiso.php';
require_once 'SAMURAI/Sistema.php';
+ require_once 'HTML/Image.php';
// }}}
//CREO LOS OBJETO NECESARIOS {{{
if (@$_GET['id_perfil']) {
$FORM->addRule ('permisos', 'Se debe seleccionar al menos un permiso', 'required');
// }}}
//CARGO LOS DATOS SI YA EXISTEN EN BASE {{{
-// TODO Terminar de armar la parte de modificacion y eliminacion
if (isset($_GET['accion']) && $_GET['accion'] != '') {
//MODIFICACION
$id_perfil =& $FORM->getElement ('id_perfil' );
$res = $PERFIL->guardarDatos($aceptar->getValue());
if (PEAR::isError($res)) {
- $TABLA = new Tabla ('cellspacing=0');
- $row = array ('<font color="red"><b>'.$res->getMessage().'</b></font>');
- $TABLA->addRow($row,'align=left');
+ $ERROR = new MECON_HTML_Error($res->getMessage());
if ($aceptar->getValue() == 'Eliminar') {
$FORM->freeze();
}
}
// }}}
//DIBUJO LA PAGINA {{{
+ $imagen = new HTML_Image('/MECON/images/vinetas_flecha_doble.gif');
+ $row = array ($imagen->toHtml().' <b>SISTEMA: '.$SISTEMA->getNombre().'</b>');
$TABLA3 = new Tabla ('cellspacing=0');
- $row = array ('<b>SISTEMA: '.$SISTEMA->getNombre().'</b>');
- $TABLA3->addRow($row,'titulo align=left');
+ $TABLA3->addRow($row,'align=left');
$MARCO = new Marco ('../../conf/confSecciones.php');
$MARCO->addTitle('ABM Perfil');
$MARCO->addBody($TABLA3);
- if (isset($TABLA)) {
- $MARCO->addBody($TABLA);
+ if (isset($ERROR)) {
+ $MARCO->addBody($ERROR);
}
$MARCO->addBody($FORM);
$MARCO->display();