+ $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($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'),
+ array('class' => 'ver_mas'));
+ $this->addRow(array(new HTML_Image('images/linea_puntos.gif')),
+ array('class' => 'ver_mas'));
+ return parent::toHTML();