]> git.llucax.com Git - mecon/intranet.git/blob - sistema/local_lib/HTML_Noticia.php
(no commit message)
[mecon/intranet.git] / sistema / local_lib / HTML_Noticia.php
1 <?php
2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
3 // +--------------------------------------------------------------------+
4 // |                      Ministerio de Economía                        |
5 // |                             Intranet                              |
6 // +--------------------------------------------------------------------+
7 // | This file is part of Intranet.                                    |
8 // |                                                                    |
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.                             |
13 // |                                                                    |
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.                           |
18 // |                                                                    |
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 // +--------------------------------------------------------------------+
26 //
27 // $Id: xmi2code.tpl.php 1 2003-06-23 18:29:20Z gmeray $
28 //
29
30
31
32 // +X2C includes
33 require_once 'HTML/Table.php';
34 // ~X2C
35
36 // +X2C Class 162 :HTML_Noticia
37 /**
38  * @access public
39  */
40 class HTML_Noticia extends HTML_Table {
41     /**
42      * @var    noticia $noticia
43      * @access public
44      */
45     var $noticia;
46
47     /**
48      * @var    bool $completa
49      * @access public
50      */
51     var $completa;
52
53     /**
54      * @var    int $nuevo
55      * @access public
56      */
57     var $nuevo;
58
59     // ~X2C
60
61     // +X2C Operation 166
62     /**
63      * @return void
64      * @access public
65      */
66     function toHTML() // ~X2C
67     {
68         if($this->completa)
69         {
70             $this->addRow(array('El Nombre de la Seccion'), array('class' => 'titulo_uno'));
71             $this->addRow(array(new HTML_Image('images/noticia_linea_azul.gif')),
72                           array('class' => 'ver_mas'));
73             $this->addRow(array($this->noticia->getTitulo()), array('class' => 'textoazul'));
74             $this->addRow(array($this->noticia->getTitulo2()), array('class' => 'titulo_vinculos'));
75             $this->addRow(array($this->noticia->getTexto()), array('class' => 'titulo_noticia'));
76             $tmp = $this->noticia->getFecha();
77             $this->addRow(array($tmp->format('Fecha de publicación: %d/%m/%Y')),
78                           array('class' => 'ver_mas'));
79             $this->addRow(array(new HTML_Image('images/blanco.gif','', 
80                           array('height'=>'15', 'width'=>'1', 'border'=>'0'))),
81                           array('class' => 'ver_mas'));
82             $tmp = new HTML_Image('images/noticia_anterior.gif');
83             $this->addRow(array($tmp->toHTML().'volver'),
84                           array('class' => 'ver_mas'));
85         }
86         else
87         {
88             $this->addRow(array($this->noticia->getTitulo()),
89                         array('class' => 'subtitulo'));
90             $img_str = null;
91             if($this->nuevo)
92             {
93                 $nuevo = new HTML_Image('images/noticia_nuevo.gif');
94                 $img_str = $nuevo->toHTML();
95             }
96             $this->addRow(array($this->noticia->getTitulo2().$img_str), array('class' => 'titulo_noticia'));
97             $tmp = $this->noticia->getFecha();
98             $this->addRow(array($tmp->format('(%d/%m/%Y)')),
99                           array('class' => 'fecha_noticia'));
100             $mas = new HTML_Image('images/noticia_mas.gif');
101             $this->addRow(array($mas->toHTML().'ver más'),
102                           array('class' => 'ver_mas'));
103             $this->addRow(array(new HTML_Image('images/noticia_linea_puntos.gif')),
104                           array('class' => 'ver_mas'));
105         }
106         return parent::toHTML();    
107     }
108     // -X2C
109
110     // +X2C Operation 167
111     /**
112      * @param  noticia $noticia 
113      *
114      * @return void
115      * @access public
116      */
117     function HTML_Noticia($noticia) // ~X2C
118     {
119         $this->noticia = $noticia;
120         $params = array('width'      => '280',
121                         'border'     =>'0',
122                         'cellPadding'=>'0');
123         parent::HTML_Table($params);
124     }
125     // -X2C
126
127
128     // +X2C Operation 175
129     /**
130      * @param  bool $completa 
131      *
132      * @return void
133      * @access public
134      */
135     function setCompleta($completa) // ~X2C
136     {
137         $this->completa = $completa;
138     }
139     // -X2C
140
141     // +X2C Operation 176
142     /**
143      * @param  bool $nuevo 
144      *
145      * @return void
146      * @access public
147      */
148     function setNuevo($nuevo) // ~X2C
149     {
150         $this->nuevo = $nuevo;
151     }
152     // -X2C
153
154 } // -X2C Class :HTML_Noticia
155 ?>