]> git.llucax.com Git - mecon/meconlib.git/commitdiff
(no commit message)
authorMartín Marrese <marrese@gmail.com>
Mon, 7 Apr 2003 16:30:45 +0000 (16:30 +0000)
committerMartín Marrese <marrese@gmail.com>
Mon, 7 Apr 2003 16:30:45 +0000 (16:30 +0000)
marco/php/marco/Copete.php
marco/php/marco/Marco/marco_html_01.php
marco/php/marco/Marco/marco_html_02.php
marco/php/marco/Marco/marco_html_03.php
marco/php/marco/Marco/marco_html_04.php
marco/php/marco/Marco/marco_html_05.php
marco/php/marco/Pie.php

index 2d4c7743e9296f05ea5d5a2cf81bf9e5b1ad2205..417e8303d6adb796bebc3f1c912d549fce677f42 100644 (file)
@@ -61,7 +61,7 @@ class Copete extends PEAR {
     {
         $TABLA = new Tabla('width="760" align="center"');
         
-        $row = ('<img src="www/sistemas/'.$this->_directorio.'/images/copete.jpg">');
+        $row = ('<img src="www/sistemas/'.$this->_directorio.'/www/images/copete.jpg">');
         $TABLA->agregarFila();
         
         return $TABLA->toHtml();        
index 3903f9c601a6fe35983da421f7826fd99b9d1286..19e862811b337f681d49281ab7bb15c0917b2ea6 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-return "\n".'
+return '
 <html>
     <head>
         <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
index 2af1f007e159a6b07da5e6b42a60d7d03c63f6e5..e4bfff034137f624acfd72d414ef1c631ecbc3e4 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-return "\n".'
+return '
     </head>
     <body>
         <table>
index ce76005e6e01986fcbfefdf9f32986b9607d96a2..87c5ae3c5e45fda2b32dd689c5aabaf95e919c8e 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-return "\n".'
+return '
             <tr>
                 <td>
 '."\n";
index daaf67b7b219f3d407213477f5c927478c5369c9..b5eb681b0bced4996d9d801734737b98c58d3e16 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-return "\n".'
+return '
                 </td>
             </tr>
 '."\n";
index 2d71f81f03eb8052fad7cded2216c9804d716555..2c460a7fc8af85b88b0038b379d0a6114b3c5c49 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-return "\n".'
+return '
         </table>
     </body>
 </html>
index 284d06fd9ba24f37122963ae6a6eb9eef77239c6..926ae12ecf4b8265ef5c3faf7adc8e50b3cd9c1e 100644 (file)
@@ -19,6 +19,7 @@
 // $Author$
 
 require_once 'PEAR.php';
+require_once 'include/lib/HTML/Tabla.php';
 
 /**
  * Manejo del Titulo
@@ -59,7 +60,11 @@ class Pie extends PEAR {
      */
     function toHtml () 
     {
-        return $this->_configuracion['pie_sistema'];
+        $TABLA = new Tabla('width=760 bgcolor="#CCCCCC" align="center"');
+        $row = array ($this->_configuracion['pie_sistema']);
+        $TABLA->agregarFila($row);
+        $TABLA->align(0,0,"center");
+        return $TABLA->toHtml();
     }
 }
 ?>