]> git.llucax.com Git - mecon/intranet.git/blob - sistema/local_lib/HTML_Noticia.php
Saco servicios del caminito cuando empieza
[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($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().
84                                                                'volver</a>'),
85                           array('class' => 'noticias_ver_mas'));
86         return parent::toHTML();    
87         }
88         else
89         {
90             $seccion = $this->noticia->getSeccion();
91             if(!is_null($seccion))
92               $this->addRow(array($seccion),
93                           array('class' => 'noticias_subtitulo'));
94             $img_str = null;
95             if($this->nuevo)
96             {
97                 $nuevo = new MECON_HTML_Image('images/noticia_nuevo.gif');
98                 $img_str = ' '.$nuevo->toHTML();
99             }
100             $this->addRow(array("<a href='$this->link' class='noticias_titulo_noticia'>".$this->noticia->getTitulo().$img_str.'<a>'), array('class' => 'noticias_titulo_noticia'));
101             $tmp = $this->noticia->getFecha();
102             $this->addRow(array($tmp->format('(%d/%m/%Y)')),
103                           array('class' => 'noticias_fecha_noticia'));
104             $mas = new MECON_HTML_Image('images/noticia_mas.gif');
105             if(isset($this->vermas))
106             {
107               $this->addRow(array("<a href='$this->vermas' class='noticias_ver_mas'>".$mas->toHTML().' ver más</a>'),
108                           array('class' => 'noticias_ver_mas'));
109             }
110             $this->addRow(array(new MECON_HTML_Image('images/noticia_linea_puntos.gif')),
111                           array('class' => 'noticias_ver_mas'));
112         return @ $this->toHTML_no_tabla();    
113         }
114     }
115     // -X2C
116     function toHTML_no_tabla()
117     {
118         for ($i = 0 ; $i < $this->_rows ; $i++) {
119           $strHtml .= $tabs ."\t<TR>\n";
120           for ($j = 0 ; $j < $this->_cols ; $j++) {
121             if ($this->_structure[$i][$j] == "SPANNED") {
122               $strHtml .= $tabs ."\t\t<!-- span -->\n";
123               continue;
124             }
125             $type = ($this->_structure[$i][$j]["type"] == "TH" ? "TH" : "TD");
126             $attr = $this->_structure[$i][$j]["attr"];
127             $contents = $this->_structure[$i][$j]["contents"];
128             $strHtml .= $tabs . "\t\t<$type" . $this->_getAttrString($attr) . ">";                if (is_object($contents)) {
129               if (is_subclass_of($contents, "html_common")) {
130                  $contents->setTabOffset($this->_tabOffset + 3);
131                  $contents->_nestLevel = $this->_nestLevel + 1;
132               }
133               if (method_exists($contents, "toHtml")) {
134                  $contents = $contents->toHtml();
135               } elseif (method_exists($contents, "toString")) {
136                  $contents = $contents->toString();
137               }
138             }
139             if (is_array($contents)) $contents = implode(", ",$contents);
140       if (isset($this->_autoFill) && $contents == "") $contents = $this->_autoFill;
141       $strHtml .= $contents;
142       $strHtml .= "</$type>\n";
143     }
144     $strHtml .= $tabs ."\t</TR>\n";
145   }
146   return $strHtml;
147 }
148
149
150     // +X2C Operation 167
151     /**
152      * @param  noticia $noticia 
153      *
154      * @return void
155      * @access public
156      */
157     function HTML_Noticia($noticia) // ~X2C
158     {
159         $this->noticia = $noticia;
160         $params = array('width'      => '280',
161                         'border'     =>'0',
162                         'cellPadding'=>'0');
163         parent::HTML_Table($params);
164     }
165     // -X2C
166
167
168     // +X2C Operation 175
169     /**
170      * @param  bool $completa 
171      *
172      * @return void
173      * @access public
174      */
175     function setCompleta($completa) // ~X2C
176     {
177         $this->completa = $completa;
178     }
179     // -X2C
180
181     // +X2C Operation 176
182     /**
183      * @param  bool $nuevo 
184      *
185      * @return void
186      * @access public
187      */
188     function setNuevo($nuevo) // ~X2C
189     {
190         $this->nuevo = $nuevo;
191     }
192     // -X2C
193
194     // +X2C Operation 192
195     /**
196      * @param  string $link 
197      *
198      * @return void
199      * @access public
200      */
201     function setLink($link) // ~X2C
202     {
203         $this->link = $link;
204     }
205     // -X2C
206
207     // +X2C Operation 193
208     /**
209      * @param  string $link 
210      *
211      * @return void
212      * @access public
213      */
214     function setVerMas($link) // ~X2C
215     {
216         $this->vermas = $link;
217     }
218     // -X2C
219
220     // +X2C Operation 194
221     /**
222      * @param  string $link 
223      *
224      * @return void
225      * @access public
226      */
227     function setVolver($link) // ~X2C
228     {
229         $this->volver = $link;
230     }
231     // -X2C
232
233     // +X2C Operation 195
234     /**
235      * @return void
236      * @access public
237      */
238     function getCSS() // ~X2C
239     {
240         return "css/noticias.css";
241     }
242     // -X2C
243
244 } // -X2C Class :HTML_Noticia
245 ?>