]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/local_lib/HTML_Noticia.php
corrijo noticia para que la fecha sea un Date
[mecon/intranet.git] / sistema / local_lib / HTML_Noticia.php
index ad25c4150367ede282d4112908414b5c98e570f4..7477fe9b561f80b602e3091d3ba4d7ba1db28eed 100644 (file)
@@ -31,7 +31,6 @@
 
 // +X2C includes
 require_once 'HTML/Table.php';
-require_once 'HTML/Image.php';
 // ~X2C
 
 // +X2C Class 162 :HTML_Noticia
@@ -66,15 +65,16 @@ class HTML_Noticia extends HTML_Table {
      */
     function toHTML() // ~X2C
     {
-        $this->addRow(array('Subtítulo'), array('class' => 'subtitulo'));
+        $this->addRow(array($this->noticia->getTitulo2()), array('class' => 'subtitulo'));
        $img_str = null;
        if($this->nuevo)
        {
          $nuevo = new HTML_Image('images/nuevo.gif');
          $img_str = $nuevo->toHTML();
        }
-        $this->addRow(array('Título de la noticia que nos vincula con su texto completo.'.$img_str), array('class' => 'titulo_noticia'));
-        $this->addRow(array('(10/02/03)'),
+        $this->addRow(array($this->noticia->getTitulo().$img_str), array('class' => 'titulo_noticia'));
+        $tmp = $this->noticia->getFecha();
+        $this->addRow(array($tmp->format('(%d/%m/%Y)')),
                                 array('class' => 'fecha_noticia'));
        $mas = new HTML_Image('images/mas.gif');
         $this->addRow(array($mas->toHTML().'ver más'),