]> git.llucax.com Git - mecon/intranet.git/blob - sistema/local_lib/HTML_Copete.php
Agregue los archivos para el uso del servicio Legajos de Personal.
[mecon/intranet.git] / sistema / local_lib / HTML_Copete.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 10 15:14:06 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_Copete
37 /**
38  * @access public
39  */
40 class HTML_Copete extends HTML_Table {
41     // ~X2C
42
43     // +X2C Operation 163
44     /**
45      * @param  int $seccion 
46      *
47      * @return void
48      * @access public
49      */
50     function HTML_Copete($seccion) // ~X2C
51     {
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" > 
62          </map>';
63
64
65 parent::HTML_Table(array('width'  => '760',
66                              'border' => '0',
67                              'cellspacing' => '0',
68                              'cellpadding' => '0'));
69     $anchos = array('12', '25', '712', '11');
70     $fila = array();
71     foreach($anchos as $a)
72       $fila[] = '<img src="images/blanco.gif" width="'.$a.'" height="1">';
73     $this->addRow($fila);
74     $img_seccion = 'images/copete_'.$seccion.'.jpg';
75     $this->addRow(array('<img src="'.$img_seccion.'" width="760" height="66" border="0" usemap="#intranet">'), array('colspan' => '4'));
76     $fila = array();
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">';
79     switch($seccion)
80     {
81       case 'noticias': $fila[] = 'Enlaces &uacute;tiles:
82          <a href="http://www.mecon.gov.ar/" target="_blank" class="TextBlue">
83            Ministerio de Econom&iacute;a y Producci&oacute;n
84          </a>
85          -
86          <a href="http://boletinoficial.mecon.ar/" target="_blank" class="TextBlue">
87            Bolet&iacute;n Oficial
88          </a>
89          -
90          <a href="http://infoleg.mecon.gov.ar/" target="_blank" class="TextBlue">
91            INFOLEG
92          </a> 
93          -
94          <a href="http://cdi.mecon.gov.ar/" target="_blank" class="TextBlue">
95            CDI
96          </a>';
97              break;
98      case 'servicios': $fila[] = '<span class="titulo_uno">Servicios</span>';
99              break;
100      case 'sistemas': $fila[] = '<span class="titulo_uno">Sistemas</span>';
101              break;
102     }
103     $fila[] = '<img src="images/copete_fin.gif" height="30" border="0">';
104     $this->addRow($fila, array('class' => 'titulo_vinculos'));        
105     }
106     // -X2C
107
108 } // -X2C Class :HTML_Copete
109 ?>