2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
3 // +--------------------------------------------------------------------+
4 // | Ministerio de Economía |
6 // +--------------------------------------------------------------------+
7 // | This file is part of Intranet. |
9 // | Intranet is free software; you can redistribute it and/or modify |
10 // | it under the terms of the GNU General Public License as published |
11 // | by the Free Software Foundation; either version 2 of the License, |
12 // | or (at your option) any later version. |
14 // | Intranet is distributed in the hope that it will be useful, but |
15 // | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
17 // | General Public License for more details. |
19 // | You should have received a copy of the GNU General Public License |
20 // | along with Hooks; if not, write to the Free Software Foundation, |
21 // | Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
22 // +--------------------------------------------------------------------+
23 // | Creado: Thu Jul 3 14:43:38 2003 |
24 // | Autor: Gonzalo Merayo <gmeray@mecon.gov.ar> |
25 // +--------------------------------------------------------------------+
27 // $Id: xmi2code.tpl.php 1 2003-06-23 18:29:20Z gmeray $
33 require_once 'HTML/Table.php';
36 // +X2C Class 162 :HTML_Noticia
40 class HTML_Noticia extends HTML_Table {
42 * @var noticia $noticia
66 function toHTML() // ~X2C
70 $this->addRow(array($this->noticia->getSeccion()), array('class' => 'noticias_titulo_uno'));
71 $this->addRow(array(new MECON_HTML_Image('images/noticia_linea_azul.gif')),
72 array('class' => 'ver_mas'));
73 $this->addRow(array($this->noticia->getTitulo()), array('class' => 'noticias_textoazul'));
74 $this->addRow(array($this->noticia->getTitulo2()), array('class' => 'noticias_titulo_vinculos'));
75 $this->addRow(array($this->noticia->getTexto()), array('class' => 'noticias_titulo_noticia'));
76 $tmp = $this->noticia->getFecha();
77 $this->addRow(array($tmp->format('Fecha de publicación: %d/%m/%Y')),
78 array('class' => 'noticias_ver_mas'));
79 $this->addRow(array(new MECON_HTML_Image('images/blanco.gif','',
80 array('height'=>'15', 'width'=>'1', 'border'=>'0'))),
81 array('class' => 'noticias_ver_mas'));
82 $tmp = new MECON_HTML_Image('images/noticia_anterior.gif');
83 $this->addRow(array("<a href='$this->volver' class='noticias_ver_mas'>".$tmp->toHTML().
85 array('class' => 'noticias_ver_mas'));
89 $seccion = $this->noticia->getSeccion();
90 if(!is_null($seccion))
91 $this->addRow(array($seccion),
92 array('class' => 'noticias_subtitulo'));
96 $nuevo = new MECON_HTML_Image('images/noticia_nuevo.gif');
97 $img_str = ' '.$nuevo->toHTML();
99 $this->addRow(array("<a href='$this->link' class='noticias_titulo_noticia'>".$this->noticia->getTitulo().$img_str.'<a>'), array('class' => 'noticias_titulo_noticia'));
100 $tmp = $this->noticia->getFecha();
101 $this->addRow(array($tmp->format('(%d/%m/%Y)')),
102 array('class' => 'noticias_fecha_noticia'));
103 $mas = new MECON_HTML_Image('images/noticia_mas.gif');
104 if(isset($this->vermas))
106 $this->addRow(array("<a href='$this->vermas' class='noticias_ver_mas'>".$mas->toHTML().' ver más</a>'),
107 array('class' => 'noticias_ver_mas'));
109 $this->addRow(array(new MECON_HTML_Image('images/noticia_linea_puntos.gif')),
110 array('class' => 'noticias_ver_mas'));
112 return parent::toHTML();
116 // +X2C Operation 167
118 * @param noticia $noticia
123 function HTML_Noticia($noticia) // ~X2C
125 $this->noticia = $noticia;
126 $params = array('width' => '280',
129 parent::HTML_Table($params);
134 // +X2C Operation 175
136 * @param bool $completa
141 function setCompleta($completa) // ~X2C
143 $this->completa = $completa;
147 // +X2C Operation 176
154 function setNuevo($nuevo) // ~X2C
156 $this->nuevo = $nuevo;
160 // +X2C Operation 192
162 * @param string $link
167 function setLink($link) // ~X2C
173 // +X2C Operation 193
175 * @param string $link
180 function setVerMas($link) // ~X2C
182 $this->vermas = $link;
186 // +X2C Operation 194
188 * @param string $link
193 function setVolver($link) // ~X2C
195 $this->volver = $link;
199 // +X2C Operation 195
204 function getCSS() // ~X2C
206 return "css/noticias.css";
210 } // -X2C Class :HTML_Noticia