]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/www/servicios/codep/codep_nombre.php
- Agregué la posibilidad de imprimir los accesos del mes.
[mecon/intranet.git] / sistema / www / servicios / codep / codep_nombre.php
index 5658cd8967095252ed8a2f68c916223eff2af0fe..7c292e7fffea4490555fe8cef9b6d15e34fc2627 100644 (file)
@@ -26,7 +26,7 @@ if (DB::isError($dbh)) {
 $IMG_Ayuda =& new MECON_HTML_Image('../../images/servicios_ayuda.gif', 'Ayuda');
 $IMG_Lupa =& new MECON_HTML_Image('../../images/servicios_lupa.gif', 'Buscar');
 $IMG_Zip =& new MECON_HTML_Image('../../images/servicios_zip.gif', 'Download');
-$IMG_Viñeta =& new MECON_HTML_Image('../../images/servicios_flecha_naranja.gif', '*');
+$IMG_Viñeta =& new MECON_HTML_Image('../../images/servicios_flecha_naranja.gif', '>>');
 
 
 //Links
@@ -42,7 +42,6 @@ $FORM =& new MECON_HTML_QuickFormSimple ('form', 'post', './codep_nombre.php', '
 $input_nombre =& $FORM->addElement ('text', 'clave', 'clave', array('size' => '40'));
 
 $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Aceptar');
-$group[] = HTML_QuickForm::createElement('reset', 'cancelar' , 'Cancelar');
 $botones =& $FORM->addGroup($group,'botones');
 
 //Función para validar el formulario
@@ -65,7 +64,7 @@ fclose($file);
 
 
 //Marco de servicios en intranet
-$MARCO     = new HTML_DietMarco('servicios', 'Servicios');
+$MARCO     = new HTML_DietMarco('servicios', 'CODEP');
 $MARCO->addStyleSheet('../../css/servicios_codep.css');
 $MARCO->addScriptDeclaration($script);
 
@@ -79,10 +78,10 @@ $TABLA_Encabezado->addRow(array($IMG_Ayuda->toHtml(), $LINK_Ayuda->toHtml(), '
                            array('width'=>'24', 'align'=>'left', 'valign'=>'middle'));
 $TABLA_Encabezado->updateCellAttributes(0, 1, array('width'=>'60',
                                                    'align'=>'left',
-                                                   'class'=>'txt2'));
+                                                   'class'=>'servicios_codep_txt2'));
 $TABLA_Encabezado->updateCellAttributes(0, 2, array('width'=>'676',
                                                    'align'=>'right',
-                                                   'class'=>'txt_derecha'));
+                                                   'class'=>'servicios_codep_txt_derecha'));
 
 
 $TABLA_Form =& new MECON_HTML_Tabla ('width="500" align="center"', 'claro');
@@ -97,9 +96,9 @@ $TABLA_Pie =& new HTML_Table (array( 'width'=>'760',
                                     'cellspacing'=>'0',
                                     'border'=>'0'));
 $TABLA_Pie->addRow(array($IMG_Lupa->toHtml().$LINK_Buscar->toHtml()),
-                   array('class'=>'txt1'));
+                   array('class'=>'servicios_codep_txt1'));
 $TABLA_Pie->addRow(array($IMG_Zip->toHtml().$LINK_Download->toHtml()),
-                   array('class'=>'txt1'));
+                   array('class'=>'servicios_codep_txt1'));
 
 
 if (isset($_POST['clave'])){
@@ -112,25 +111,25 @@ if (isset($_POST['clave'])){
        $TABLA_Resultados->addRow(array($IMG_Viñeta->toHtml().'Resultados de la búsqueda por palabra clave'),
                                    array('cabecera'=>'1', 'colspan'=>'3'));
        $TABLA_Resultados->addRow(array('CODEP', 'COMDOC', 'Dependencia'),
-                                   array('titulo'=>'1', 'height'=>'25'));
+                                   array('titulo'=>'1', 'height'=>'25', 'align'=>'left'));
 
        while ($resultado->fetchInto($row)){
            $TABLA_Resultados->addRow(array($row['codigo_actual'], 
                                            $row['codigo_comdoc'], 
                                            $row['nombre']), 
-                                       'comun');
+                                       'comun align="left"');
        }
     }
     else{
        //Mensaje de error
        $TABLA_Resultados =& new HTML_Table(array('width'=>'500', 'align'=>'center', 'border'=>'0'));
        $TABLA_Resultados->addRow(array('La búsqueda no produjo aciertos'),
-                                   array('align'=>'center', 'class'=>'txt_naranja'));
+                                   array('align'=>'center', 'class'=>'servicios_codep_txt_naranja'));
     }
 }
 
 //Contenido de la página
-$MARCO->addTitle('Codificador de Dependencias');
+//$MARCO->addTitle('CODEP');
 
 $MARCO->addBodyContent($TABLA_Encabezado);