X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/2a767add127bcb217dcc2ce2ca242f703b5022a0..79cc4f777b6fe9d907ccad24a2fc65246d0253ed:/sistema/www/perfiles/perfiles-nuevo.php diff --git a/sistema/www/perfiles/perfiles-nuevo.php b/sistema/www/perfiles/perfiles-nuevo.php index fa39902..e406d1e 100644 --- a/sistema/www/perfiles/perfiles-nuevo.php +++ b/sistema/www/perfiles/perfiles-nuevo.php @@ -19,6 +19,9 @@ // // $Id$ // +//VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{ +$SAMURAI_PERM->chequear(SAMURAI_ALTA_PERFIL); +//}}} //REQUIRE_ONCE {{{ require_once 'PEAR.php'; @@ -38,7 +41,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{{{ @@ -101,7 +104,7 @@ } } if (PEAR::isError($res)) { - $TABLA = new Tabla ('cellspacing=0'); + $TABLA = new MECON_HTML_Tabla ('cellspacing=0'); $row = array (''.$res->getMessage().''); $TABLA->addRow($row,'align=left'); } @@ -110,13 +113,12 @@ // }}} //MUESTRO LA PAGINA {{{ //AGREGO LOS DATOS A LAS TABLAS {{{ - $TABLA3 = new Tabla ('cellspacing=0'); - $imagen = new HTML_Image('/MECON/images/vinetas_flecha_doble.gif'); + $TABLA3 = new MECON_HTML_Tabla ('cellspacing=0'); + $imagen = new MECON_HTML_Image('/MECON/images/vinetas_flecha_doble.gif'); $row = array ($imagen->toHtml().' SISTEMA: '.$SISTEMA->getNombre().''); $TABLA3->addRow($row,'align=left'); //}}} - $MARCO = new Marco ('../../conf/confSecciones.php'); $MARCO->addBody($TABLA3); if (isset($TABLA)) { $MARCO->addBody($TABLA);