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 {
62 function HTML_Copete($seccion) // ~X2C
64 $this->seccion = $seccion;
73 function getCSS() // ~X2C
75 return PATH_RAIZ."css/copete.css";
84 function toHTML() // ~X2C
86 $mapa = '<map name="intranet"
87 ><area shape="rect" coords="686,17,710,41"
88 alt="E-mail" title="E-mail"
89 href="mailto:intranet2@mecon.gov.ar"
90 ><area shape="rect" coords="645,17,669,41"
91 href="https://ldapmaster.mecon.ar/bbng/servlet/ServletDispatcher?hans=gui.FormPassUsr"
92 alt="Cambio de Clave" title="Cambio de Clave"';
93 if(isset($_SESSION['usuario']))
94 $mapa .= '><area shape="rect" coords="726,17,750,41" alt="Logout"
95 title="Logout" href="'.PATH_RAIZ.'logout.php"';
96 $mapa .= '><area shape="rect" coords="472,17,562,44"
97 href="'.PATH_RAIZ.'sistemas.php" alt="Sistemas"
99 ><area shape="rect" coords="366,17,456,44"
100 href="'.PATH_RAIZ.'servicios.php" alt="Servicios"
102 ><area shape="rect" coords="258,17,348,44"
103 href="'.PATH_RAIZ.'noticias.php"
104 alt="Noticias" title="Noticias"
108 parent::HTML_Table(array('width' => '760',
110 'cellspacing' => '0',
111 'cellpadding' => '0'));
113 $anchos = array('12', '25', '712', '11');
115 foreach($anchos as $a)
116 $fila[] = '<img src="'.PATH_RAIZ.'images/blanco.gif" width="'.$a.'" height="1">';
117 $this->addRow($fila);
119 if(isset($_SESSION['usuario']))
120 $img_seccion = 'images/copete_'.$this->seccion.'_logout.jpg';
122 $img_seccion = 'images/copete_'.$this->seccion.'.jpg';
123 $this->addRow(array('<img src="'.PATH_RAIZ.$img_seccion.'" width="760" height="66" border="0" usemap="#intranet">'.$mapa), array('colspan' => '4'));
126 $fila[] = new MECON_HTML_Image(PATH_RAIZ.'images/copete_inicio.gif',
128 array('height' => '30',
130 $fila[] = new MECON_HTML_Image(PATH_RAIZ.'images/copete_flecha_azul.gif',
132 array('height' => '30',
135 switch($this->seccion)
137 case 'noticias': $fila[] = 'Enlaces útiles:
138 <a href="http://www.mecon.gov.ar/" target="_blank" class="copete_TextBlue">
139 Ministerio de Economía y Producción
142 <a href="http://boletinoficial.mecon.ar/" target="_blank" class="copete_TextBlue">
143 Boletín Oficial
146 <a href="http://infoleg.mecon.gov.ar/" target="_blank" class="copete_TextBlue">
150 <a href="http://cdi.mecon.gov.ar/" target="_blank" class="copete_TextBlue">
154 case 'servicios': $fila[] = '<span class="copete_titulo_uno">Servicios</span>';
156 case 'sistemas': $fila[] = '<span class="copete_titulo_uno">Sistemas</span>';
160 $fila[] = $this->titulo;
161 $fila[] = new MECON_HTML_Image(PATH_RAIZ.'images/copete_fin.gif',
163 array('height' => '30',
165 $this->addRow($fila, array('class' => 'copete_titulo_vinculos'));
167 for($n = 0; $n < 4; $n++)
168 $this->updateCellAttributes(1, $n, array('width'=>$anchos[$n]));
169 return parent::toHTML();
173 // +X2C Operation 176
175 * @param int $contenido
180 function setTitulo($contenido) // ~X2C
182 $this->titulo = $contenido;
186 } // -X2C Class :HTML_Copete