X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/22d1ae1aa6bfee6df20dfa9544e14feaecc9fbf4..1fce1689d24ee6eed11644946bfa777a06d2ef8e:/sistema/www/perfiles/perfiles-nuevo.php?ds=sidebyside diff --git a/sistema/www/perfiles/perfiles-nuevo.php b/sistema/www/perfiles/perfiles-nuevo.php index 2522de7..1b5a5aa 100644 --- a/sistema/www/perfiles/perfiles-nuevo.php +++ b/sistema/www/perfiles/perfiles-nuevo.php @@ -18,14 +18,15 @@ // +----------------------------------------------------------------------+ // // $Id$ -// +// +//REQUIRE_ONCE {{{ require_once 'PEAR.php'; require_once 'MECON/HTML/QuickForm.php'; require_once 'MECON/HTML/Tabla.php'; require_once 'SAMURAI/Perfil.php'; require_once 'SAMURAI/Sistema.php'; - +//}}} //CREO LOS OBJETO NECESARIOS {{{ $FORM = new MECON_HTML_QuickForm ('perfiles_nuevo','post','perfiles-nuevo'); $SISTEMA = new SAMURAI_Sistema ($DB, $_SESSION['samurai']['id_sistema']); @@ -37,7 +38,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' ); + $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{{{ @@ -108,9 +109,12 @@ } // }}} //MUESTRO LA PAGINA {{{ +//AGREGO LOS DATOS A LAS TABLAS {{{ $TABLA3 = new Tabla ('cellspacing=0'); - $row = array ('SISTEMA: '.$SISTEMA->getNombre().''); - $TABLA3->addRow($row,'titulo align=left'); + $imagen = new 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);