-// }}}
-//CREO LOS OBJETOS NECESARIOS {{{
- $TABLA2 = new Tabla ('cellspacing=0');
- $TABLA = new Tabla ('cellpadding=2');
- $TABLA3 = new Tabla ('cellspacing=0');
- $SISTEMA = new SAMURAI_Sistema($DB, $_SESSION['samurai']['id_sistema']);
-// }}}
-//OBTENGO LA INFORMACION DE LA BASE {{{
- $perfiles = SAMURAI_Perfil::getPerfiles($DB, null, $_SESSION['samurai']['id_sistema']);
-// }}}
-//AGREGO LOS DATOS A LAS TABLAS {{{
- $imagen = new HTML_Image('/MECON/images/vinetas_flecha_doble.gif');
- $row = array ($imagen->toHtml().' <b>SISTEMA: '.$SISTEMA->getNombre().'</b>');
- $TABLA3->addRow($row,'align=left');
- $row = array ('<a href="perfiles-nuevo"><img src="/MECON/images/general_nuevo.gif" border="0">Ingresar Nuevo Perfil</a>');
- $TABLA2->addRow($row,'align=right');
- $row = array ('Id','Descripcion','Tipo','Modif.','Elim.');
- $TABLA->addRow($row,'cabecera');
- foreach ($perfiles as $perfil) {
- $Popup = ereg_replace('##PERFIL##', $perfil->getId(), $aHrefPopup);
- $Modif = ereg_replace('##NUEVO##' , $perfil->getId(), $aHrefModif);
- $Elim = ereg_replace('##NUEVO##' , $perfil->getId(), $aHrefElim );
- $Popup = $Popup.$perfil->getDescripcion().'</a>';
- $Modif = ereg_replace('##ACCION##', 'm' , $Modif );
- $Elim = ereg_replace('##ACCION##', 'e' , $Elim );
- $row = array ( $perfil->getId(),
- $Popup,
- $perfil->getTipo(),
- $Modif,
- $Elim,
- );
- $TABLA->addRow($row);
- }
-// }}}
+//}}}
+
+//VIÑETA CON EL SISTEMA EN EL CUAL SE ESTA TRABAJANDO {{{
+$SISTEMA =& new SAMURAI_Sistema($DB, $_SESSION['samurai']['id_sistema']);
+$tmp =& new MECON_HTML_Image('/MECON/images/vinetas_flecha_doble.gif', '>>');
+$VINETA = '<div align="left">'. $tmp->toHTML() .' <b>SISTEMA: '.
+ $SISTEMA->getNombre().'</b></div>';
+//}}}
+
+//OBTENGO LA INFORMACION DE LOS PERFILES {{{
+$res = SAMURAI_Perfil::getPerfilesPager($DB, null, $_SESSION['samurai']['id_sistema']);
+//}}}
+
+//CREO LA TABLA DE USUARIOS {{{
+$TABLA =& new MECON_HTML_TablaDB ('Perfiles');
+$TABLA->addLink(
+ 'nuevo',
+ new MECON_HTML_Link(
+ 'perfiles-nuevo', 'Nuevo Perfil'
+ )
+ );
+$TABLA->addLink(
+ 'volver',
+ new MECON_HTML_Link(
+ './../sel-sistema?redirect=perfiles/perfiles',
+ 'Seleccionar otro sistema para trabajar'
+ )
+ );
+
+
+$cabecera[] = 'Id';
+$cabecera[] = 'Descripción';
+
+//Agrego las columnas de modificacion y eliminacion {{{
+$link = new MECON_HTML_Link ('perfiles-abm', null, array('accion' => 'm'));
+if ($SAMURAI_PERM->tiene(SAMURAI_PERM_PERFIL_MODIF)) {
+ $cabecera[] = 'Modif.';
+ $TABLA->addRowsIcon('modificar', 'id_perfil', $link);
+}
+if ($SAMURAI_PERM->tiene(SAMURAI_PERM_PERFIL_BAJA)) {
+ $cabecera[] = 'Elimn.';
+ $link->setGetVar('accion', 'e');
+ $TABLA->addRowsIcon('eliminar', 'id_perfil', $link);
+}
+//}}}
+
+$TABLA->addRow($cabecera, 'cabecera');
+$pager = $TABLA->addPager($res, null, new MECON_HTML_Link ('perfiles', null), 25);
+$TABLA->addRows($pager, array ('id_perfil', 'descripcion'));
+//}}}
+