2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
3 // +----------------------------------------------------------------------+
5 // +----------------------------------------------------------------------+
6 // | Copyright (c) 1997-2003 The PHP Group |
7 // +----------------------------------------------------------------------+
8 // | This source file is subject to version 2.02 of the PHP license, |
9 // | that is bundled with this package in the file LICENSE, and is |
10 // | available at through the world-wide-web at |
11 // | http://www.php.net/license/2_02.txt. |
12 // | If you did not receive a copy of the PHP license and are unable to |
13 // | obtain it through the world-wide-web, please send a note to |
14 // | license@php.net so we can mail you a copy immediately. |
15 // +----------------------------------------------------------------------+
16 // | Created: Mon Apr 14 16:23:22 2003
17 // | Author: Martin Marrese <mmarre@mecon.gov.ar>
18 // +----------------------------------------------------------------------+
27 define('MECON_MARCO_IMAGENANIMADA_DIR_GENERAL', '/MECON/images');
29 // +X2C Class 17 :ImagenAnimada
31 * Clase para el manejo de la animacion de las imagenes. Utilizada principalmente en la barra de secciones
37 * Nombre del archivo imagen.
39 * @var string $imgComun
45 * Nombre del archivo imagen.
47 * @var string $imgMouseOn
53 * Nombre del archivo imagen.
55 * @var string $imgSelect
64 * Constructor. Recibe como parametro el nombre del archivo que contiene la imagen.
66 * @param string $imagenComun Nombre del archivo imagen.
67 * @param string $imagenMouseOn Imagen alterna con el mouse por arriba
68 * @param string $imagenSelect Imagen alterna cuando esta seleccionada la seccion
69 * @param string $directorio Directorio en donde se encuentran las imagenes
74 function ImagenAnimada($imagenComun, $imagenMouseOn = '', $imagenSelect = '', $directorio = '')// ~X2C
76 if ($imagenComun !== '') {
77 $this->_imgComun = $this->_calcularImagen($imagenComun, $directorio);
78 if ($imagenMouseOn !== '') {
79 $this->_imgMouseOn = $this->_calcularImagen($imagenMouseOn, $directorio);
82 $this->_imgMouseOn = $this->_calcularImagen($imagenMouseOn, $directorio, '_f2');
84 if ($imagenSelect !== '') {
85 $this->_imgSelect = $this->_calcularImagen($imagenSelect, $directorio);
88 $this->_imgSelect = $this->_calcularImagen($imagenSelect, $directorio, '_f3');
96 * Funcion que devuelve un string con el html a imprimir en pantalla.
101 function toHtml()// ~X2C
103 trigger_error('Poner javascript, crear imagen y detectar si esta seleccionada o no (o pasarlo por el constructor)', E_USER_WARNING);
107 // +X2C Operation 209
109 * @param string $imagen Nombre de la imagen.
110 * @param string $directorio Directorio.
111 * @param string $modificador Modificador que indica una variante de la imagen.
116 function _calcularImagen($imagen, $directorio, $modificador = '')// ~X2C
118 if ($modificador !== '') {
119 $pos = strrpos($imagen, '.');
120 $ext = substr($imagen, $pos);
121 $nom = substr($imagen, 0, $pos);
122 $imagen = "$nom$modificador$ext";
124 if (is_readable("{$_SERVER['DOCUMENT_ROOT']}$directorio/$imagen")) {
125 return "$directorio/$imagen";
128 return MECON_MARCO_IMAGENANIMADA_DIR_GENERAL . "/$imagen";
133 } // -X2C Class :ImagenAnimada