]> git.llucax.com Git - mecon/samurai.git/blobdiff - sistema/www/perfiles/perfiles-nuevo.php
Estandarizacion de nombres de clases. Adaptacion de Tabla a MECON_HTML_Tabla.
[mecon/samurai.git] / sistema / www / perfiles / perfiles-nuevo.php
index fa39902581637f77e7931d922ef78d27583e8dbe..a88f369d37a57b0df36a680404a7e493c896537c 100644 (file)
 //
 // $Id$
 //
+//VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{
+    if (!$SAMURAI_PERM->tiene(SAMURAI_ALTA_PERFIL)) {
+//        header('Location: error')
+    }
+//}}}
 
 //REQUIRE_ONCE {{{
     require_once 'PEAR.php';
@@ -38,7 +43,7 @@
     $FORM->addElement ('text'  , 'descripcion', 'Nombre'  , array('size' => '50'));
     $group[] = HTML_QuickForm::createElement('submit', 'continuar', 'Continuar');
     $group[] = HTML_QuickForm::createElement('submit', 'filtrar'  , 'Filtrar'  );
-    $group[] = HTML_QuickForm::createElement('submit', 'cancelar' , 'Cancelar', array ('onClick' => 'javascript:window.location =             ->\'perfiles\';return false;') );
+    $group[] = HTML_QuickForm::createElement('submit', 'cancelar' , 'Cancelar', array ('onClick' => 'javascript:window.location =\'perfiles\';return false;') );
     $FORM->addGroup($group,'botones');
 // }}}
 //RESTRINJO EL FORMATO DEL NOMBRE DEL PERFIL{{{
                 }
             }
             if (PEAR::isError($res)) {
-                $TABLA = new Tabla ('cellspacing=0');
+                $TABLA = new MECON_HTML_Tabla ('cellspacing=0');
                 $row = array ('<font color="red"><b>'.$res->getMessage().'</b></font>');
                 $TABLA->addRow($row,'align=left');
             }
 // }}}
 //MUESTRO LA PAGINA {{{
 //AGREGO LOS DATOS A LAS TABLAS {{{
-    $TABLA3 = new Tabla ('cellspacing=0');
+    $TABLA3 = new MECON_HTML_Tabla ('cellspacing=0');
     $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');    
 //}}} 
 
-    $MARCO = new Marco ('../../conf/confSecciones.php');
     $MARCO->addBody($TABLA3);
     if (isset($TABLA)) {
         $MARCO->addBody($TABLA);