]> git.llucax.com Git - mecon/samurai.git/blobdiff - sistema/www/perfiles/perfiles.php
Agregando los popups
[mecon/samurai.git] / sistema / www / perfiles / perfiles.php
index c51625bacc836a950a7e178b0e1b84372f730dae..1c98531160fd37851045ba3aae288be3edb847d1 100644 (file)
@@ -24,7 +24,8 @@
     require_once 'SAMURAI/Perfil.php';
     require_once 'SAMURAI/Sistema.php';
 
-//LINKS A PERFILES-ABM {{{
+//LINKS {{{
+    $aHrefPopup = '<a href="" onClick="window.open(\'perfiles-datos?id_perfil=##PERFIL##\',\'perfilesdatos\',\'height=300,width=400,scrollbars=yes\');return false;">';
     $aHref      = '<a href="perfiles-abm?accion=##ACCION##&id_perfil=##NUEVO##">';
     $aHrefModif = $aHref.'<img src="/MECON/images/general_modificar.gif" border="0" alt="Modificar Perfil"></a>';
     $aHrefElim  = $aHref.'<img src="/MECON/images/general_eliminar.gif"  border="0" alt="Eliminar Perfil" ></a>';
@@ -44,19 +45,22 @@ if (!@$_SESSION['samurai']['id_sistema'] || !@$_SESSION['samurai']['login']) {
     $perfiles = SAMURAI_Perfil::getPerfiles($DB, null, $_SESSION['samurai']['id_sistema']);
 // }}}
 //AGREGO LOS DATOS A LAS TABLAS {{{
-    $row   = array ('<b>SISTEMA: '.$SISTEMA->getNombre().'</b>');
-    $TABLA3->addRow($row,'titulo align=left');    
+    $imagen = new HTML_Image('/MECON/images/vinetas_flecha_doble.gif');
+    $row    = array ($imagen->toHtml().'&nbsp;<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(),
-                        $perfil->getDescripcion(),
+                        $Popup,
                         $perfil->getTipo(),
                         $Modif,
                         $Elim,