//
require_once 'MECON/HTML/QuickForm.php';
require_once 'MECON/HTML/Tabla.php';
+ require_once 'SAMURAI/Sistema.php';
+ require_once 'SAMURAI/Permiso.php';
//OBTENGO EL ID DEL SISTEMA {{
//El id de sistema viene por get o por post, no hay otra posibilidad
}
// }}}
//CREO LOS OBJETO NECESARIOS {{{
- $SAMURAI = new Samurai($DB);
$FORM = new MECON_HTML_QuickForm ('sistemas_permisos','post','sistemas-permisos');
- $SISTEMA = new Sistema ($DB, $idSistema);
+ $SISTEMA = new SAMURAI_Sistema ($DB, $idSistema);
$TABLASIST = new Tabla ('cellpadding=2');
$TABLAPERM = new Tabla ('cellpadding=2');
// }}}
// }}}
//AGREGO LOS ELEMENTOS DEL FORM {{{
//Obtengo la lista de permisos
- $PERMISOS = $SAMURAI->getSelectPermisos();
+ $PERMISOS = SAMURAI_Permiso::getArrayPermisos($DB);
//Agrego elementos
$FORM->addElement ('header', 'cabecera' , 'Agregar una asociacion');
$FORM->addElement ('hidden', 'idSistema' , $idSistema);
}
if ($error) {
- $group = array ();
- $group[] = HTML_QuickForm::createElement('static', 'error' , 'Error', 'La asociacion ya existe, modifique alguno de sus datos.');
- $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
- $FORM->removeElement('botones');
- $FORM->addGroup($group,'botones', '', '<br>');
+ $TABLA = new Tabla ('cellspacing=0');
+ $row = array ('<font color="red"><b>La asociacion ya existe, modifique alguno de sus datos</b></font>');
+ $TABLA->addRow($row,'align=left');
}
else {
$idPermiso->setSelected(null);
foreach ($asocs as $key => $asoc) {
$estilo = 'comun';
- $permiso = new Permiso($DB, $asoc['id']);
+ $permiso = new SAMURAI_Permiso($DB, $asoc['id']);
$Modif = ereg_replace('##PERMISO##', $asoc['id'] , $aHrefModif);
$Elim = ereg_replace('##PERMISO##', $asoc['id'] , $aHrefElim );
$Modif = ereg_replace('##OBS##' , $asoc['obs'], $Modif );
//AGREGO LA TABLA DEL SISTEMA
$MARCO->addBody($TABLASIST);
$MARCO->addBody('<BR>');
+ //AGREGO EL ERROR
+ if (isset($TABLA)) {
+ $MARCO->addBody($TABLA);
+ }
//AGREGO LA TABLA DEL FORM
$MARCO->addBody($FORM);
$MARCO->addBody('<BR>');