1 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
2 -------------------------------------------------------------------------------
3 Ministerio de EconomÃa
5 -------------------------------------------------------------------------------
6 This file is part of meconlib.
8 meconlib is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 2 of the License, or (at your option)
13 meconlib is distributed in the hope that it will be useful, but WITHOUT
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License; if not,
18 write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
19 Boston, MA 02111-1307 USA
20 -------------------------------------------------------------------------------
21 Creado: Mon Apr 14 16:23:22 2003
22 Autor: Martin Marrese <mmarre@mecon.gov.ar>
23 -------------------------------------------------------------------------------
25 -----------------------------------------------------------------------------*/
27 require_once 'MECON/HTML/Image.php';
30 * Manejo del copete de los sistemas que utilizan MECON_Marco
34 class MECON_Marco_Copete {
36 * Nombre del directorio en donde se encuentra el sistema. Es case sensitive.
38 * @var string $directorio
41 var $_directorio = '';
44 * String con la referencia y los getvars de la ayuda
59 * Recibe el nombre del directorio en donde se encuentra instalado el sistema.
60 * El directorio es case sensitive.
62 * @param string $directorio Nombre del directorio en donde se encuentra el sistema.
63 * @param mixed $ayuda Objeto MECON_HTML_Link o string para armar el map de la ayuda.
64 * @param string $sistema Nombre del sistema con el cual se esta trabajando.
69 function MECON_Marco_Copete($directorio, $ayuda = null, $sistema = '')
71 $this->_directorio = $directorio;
72 $this->_sistema = $sistema;
74 if (is_object($ayuda)) {
75 $val = $ayuda->getHref();
76 foreach ($ayuda->getGetVars() as $var => $v) {
77 if (is_object($v) and method_exists($v, 'tostring')) {
79 } elseif (is_object($v) or is_array($v)) {
82 $vars[] = urlencode($var) . '=' . urlencode($v);
85 $val .= '?' . join('&', $vars);
90 $this->_ayuda = $ayuda;
96 * Funcion que devuelve el string html a imprimir en pantalla.
103 if (!is_null($this->_directorio)) {
104 $image = new MECON_HTML_Image(
105 $this->_directorio.'/copete',
106 'Intranet - Ministerio de EconomÃa - ' . $this->_sistema,
113 if (@$this->_ayuda) {
114 $image->updateAttributes(array('usemap' => '#Map_copete'));
115 $image->setSrc($image->getSrc() . '_ayuda');
116 return $image->toHtml() .
117 '<map name="Map_copete">'.
118 '<area shape="circle" coords="748,30,7" href="'.
119 $this->_ayuda . '"></map>';
122 return $image->toHtml();