]> git.llucax.com Git - mecon/intranet.git/blob - sistema/local_lib/copete.php
Demo usando ArbolDB
[mecon/intranet.git] / sistema / local_lib / copete.php
1 <?\r
2 \r
3 \r
4 require_once 'HTML/Table.php';\r
5 \r
6 \r
7 class Copete extends HTML_Table\r
8 {\r
9   function Copete($s)\r
10   {\r
11     echo '<link rel="stylesheet" href="css/copete.css">';\r
12     parent::HTML_Table(array('width'  => '760',\r
13                              'border' => '0',\r
14                              'cellspacing' => '0',\r
15                              'cellpadding' => '0'));\r
16     $anchos = array('12', '25', '712', '11');\r
17     $fila = array();\r
18     foreach($anchos as $a)\r
19       $fila[] = '<img src="images/blanco.gif" width="'.$a.'" height="1">';\r
20     $this->addRow($fila);\r
21     $seccion = 'images/copete_'.$s.'.jpg';\r
22     $this->addRow(array('<img src="'.$seccion.'" width="760" height="66" border="0">'), array('colspan' => '4'));\r
23     $fila = array();\r
24     $fila[] = '<img src="images/copete_inicio.gif" height="30" border="0">';\r
25     $fila[] = '<img src="images/copete_flecha_azul.gif" height="30" border="0">';\r
26     switch($s)\r
27     {\r
28       case 'noticias': $fila[] = 'Enlaces &uacute;tiles: <a href="http://www.mecon.gov.ar/" target="_blank"><span class="TextBlue">Ministerio \r
29       de Economía y Producción</span></a><span class="TextBlue"> - <a href="http://boletinoficial.mecon.ar/" target="_blank">Bolet&iacute;n \r
30       Oficial</a> - <a href="http://infoleg.mecon.gov.ar/" target="_blank">INFOLEG</a> \r
31       - <a href="http://cdi.mecon.gov.ar/" target="_blank">CDI</a></span>';\r
32              break;\r
33      case 'servicios': $fila[] = '<span class="titulo_uno">Servicios</span>';\r
34              break;\r
35      case 'sistemas': $fila[] = '<span class="titulo_uno">Sistemas</span>';\r
36              break;\r
37     }\r
38     $fila[] = '<img src="images/copete_fin.gif" height="30" border="0">';\r
39     $this->addRow($fila, array('class' => 'titulo_vinculos'));\r
40   }\r
41 }\r
42 ?>\r