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