2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
3 // +--------------------------------------------------------------------+
4 // | Ministerio de Economía |
6 // +--------------------------------------------------------------------+
7 // | This file is part of Intranet. |
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. |
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. |
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 10 15:14:06 2003 |
24 // | Autor: Gonzalo Merayo <gmeray@mecon.gov.ar> |
25 // +--------------------------------------------------------------------+
27 // $Id: xmi2code.tpl.php 1 2003-06-23 18:29:20Z gmeray $
33 require_once 'HTML/Table.php';
36 // +X2C Class 162 :HTML_Copete
40 class HTML_Copete extends HTML_Table {
50 function HTML_Copete($seccion) // ~X2C
52 echo '<link rel="stylesheet" href="css/copete.css">';
53 echo '<map name="intranet">
54 <area shape="rect" coords="14,0,209,54" href="#" alt="Intranet" title="Intranet" >
55 <area shape="rect" coords="605,17,629,41" href="#" alt="Mapa de Intranet" title="Mapa de Intranet" >
56 <area shape="rect" coords="645,17,669,41" href="#" alt="Cambio de Clave" title="Cambio de Clave" >
57 <area shape="rect" coords="685,17,709,41" href="#" alt="Ayuda" title="Ayuda" >
58 <area shape="rect" coords="726,17,750,41" href="#" alt="E-mail" title="E-mail" >
59 <area shape="poly" coords="473,19,473,43,475,45,561,45,563,43,563,19,561,17,475,17,473,19,473,19" href="sistemas.php" alt="Sistemas" title="Sistemas" >
60 <area shape="poly" coords="366,19,366,43,368,45,454,45,456,43,456,19,454,17,368,17,366,19,366,19" href="servicios.php" alt="Servicios" title="Servicios" >
61 <area shape="poly" coords="258,20,258,44,260,46,346,46,348,44,348,20,346,18,260,18,258,20,258,20" href="noticias.php" alt="Noticias" title="Noticias" >
65 parent::HTML_Table(array('width' => '760',
68 'cellpadding' => '0'));
69 $anchos = array('12', '25', '712', '11');
71 foreach($anchos as $a)
72 $fila[] = '<img src="images/blanco.gif" width="'.$a.'" height="1">';
74 $seccion = 'images/copete_'.$s.'.jpg';
75 $this->addRow(array('<img src="'.$seccion.'" width="760" height="66" border="0" usemap="#intranet">'), array('colspan' => '4'));
77 $fila[] = '<img src="images/copete_inicio.gif" height="30" border="0">';
78 $fila[] = '<img src="images/copete_flecha_azul.gif" height="30" border="0">';
81 case 'noticias': $fila[] = 'Enlaces útiles: <a href="http://www.mecon.gov.ar/" target="_blank"><span class="TextBlue">Ministerio
82 de Economía y Producción</span></a><span class="TextBlue"> - <a href="http://boletinoficial.mecon.ar/" target="_blank">Boletín
83 Oficial</a> - <a href="http://infoleg.mecon.gov.ar/" target="_blank">INFOLEG</a>
84 - <a href="http://cdi.mecon.gov.ar/" target="_blank">CDI</a></span>';
86 case 'servicios': $fila[] = '<span class="titulo_uno">Servicios</span>';
88 case 'sistemas': $fila[] = '<span class="titulo_uno">Sistemas</span>';
91 $fila[] = '<img src="images/copete_fin.gif" height="30" border="0">';
92 $this->addRow($fila, array('class' => 'titulo_vinculos'));
96 } // -X2C Class :HTML_Copete