// +X2C includes
require_once 'HTML/Table.php';
-require_once 'HTML/Image.php';
// ~X2C
// +X2C Class 162 :HTML_Noticia
*/
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'),