]> git.llucax.com Git - mecon/intranet.git/blob - sistema/local_lib/HTML_Noticia.php
Ahora las noticias se generan dinamicamente
[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 require_once 'HTML/Image.php';
35 // ~X2C
36
37 // +X2C Class 162 :HTML_Noticia
38 /**
39  * @access public
40  */
41 class HTML_Noticia extends HTML_Table {
42     /**
43      * @var    noticia $noticia
44      * @access public
45      */
46     var $noticia;
47
48     /**
49      * @var    bool $completa
50      * @access public
51      */
52     var $completa;
53
54     /**
55      * @var    int $nuevo
56      * @access public
57      */
58     var $nuevo;
59
60     // ~X2C
61
62     // +X2C Operation 166
63     /**
64      * @return void
65      * @access public
66      */
67     function toHTML() // ~X2C
68     {
69         $this->addRow(array('Subt&iacute;tulo'), array('class' => 'subtitulo'));
70         $img_str = null;
71         if($this->nuevo)
72         {
73           $nuevo = new HTML_Image('images/nuevo.gif');
74           $img_str = $nuevo->toHTML();
75         }
76         $this->addRow(array('Título de la noticia que nos vincula con su texto completo.'.$img_str), array('class' => 'titulo_noticia'));
77         $this->addRow(array('(10/02/03)'),
78                                  array('class' => 'fecha_noticia'));
79         $mas = new HTML_Image('images/mas.gif');
80         $this->addRow(array($mas->toHTML().'ver más'),
81                                  array('class' => 'ver_mas'));
82         $this->addRow(array(new HTML_Image('images/linea_puntos.gif')),
83                                  array('class' => 'ver_mas'));
84         return parent::toHTML();    
85     }
86     // -X2C
87
88     // +X2C Operation 167
89     /**
90      * @param  noticia $noticia 
91      *
92      * @return void
93      * @access public
94      */
95     function HTML_Noticia($noticia) // ~X2C
96     {
97         $this->noticia = $noticia;
98         $params = array('width'      => '280',
99                         'border'     =>'0',
100                         'cellPadding'=>'0');
101         parent::HTML_Table($params);
102     }
103     // -X2C
104
105
106     // +X2C Operation 175
107     /**
108      * @param  bool $completa 
109      *
110      * @return void
111      * @access public
112      */
113     function setCompleta($completa) // ~X2C
114     {
115         $this->completa = $completa;
116     }
117     // -X2C
118
119     // +X2C Operation 176
120     /**
121      * @param  bool $nuevo 
122      *
123      * @return void
124      * @access public
125      */
126     function setNuevo($nuevo) // ~X2C
127     {
128         $this->nuevo = $nuevo;
129     }
130     // -X2C
131
132 } // -X2C Class :HTML_Noticia
133 ?>