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 #require_once 'PEAR.php';
31 require_once 'MECON/Marco/Imagen.php';
34 // +X2C Class 17 :ImagenAnimada
36 * Clase para el manejo de la animacion de las imagenes. Utilizada principalmente en la barra de secciones
40 class ImagenAnimada extends Imagen {
42 * Nombre del archivo imagen.
44 * @var string $imgMouseOn
50 * Nombre del archivo imagen.
52 * @var string $imgSelect
61 * Constructor. Recibe como parametro el nombre del archivo que contiene la imagen.
63 * @param string $imagenComun Nombre del archivo imagen.
64 * @param string $imagenMouseOn Imagen alterna con el mouse por arriba
65 * @param string $imagenSelect Imagen alterna cuando esta seleccionada la seccion
66 * @param string $directorio Directorio en donde se encuentran las imagenes
71 function ImagenAnimada($imagenComun, $imagenMouseOn = null, $imagenSelect = null, $directorio = null) // ~X2C
73 if (!is_null($imagenComun) && $imagenComun != '') {
74 parent::Imagen($imagenComun, $directorio);
76 if (!is_null($imagenMouseOn) && $imagenMouseOn != ''){
77 if (is_readable($_SERVER['DOCUMENT_ROOT'].$directorio.'/'.$imagenMouseOn.'.gif')) {
78 $this->_imgMouseOn = $directorio.'/'.$imagenMouseOn;
81 $this->_imgMouseOn = '/www/images/'.$imagenMouseOn;
84 elseif (is_readable($_SERVER['DOCUMENT_ROOT'].$directorio.'/'.$imagenComun.'_f2.gif')) {
85 $this->_imgMouseOn = $directorio.'/'.$imagenComun.'_f2';
88 $this->_imgMouseOn = '/www/images/'.$imagenComun.'_f2';
91 if (!is_null($imagenSelect) && $imagenSelect != ''){
92 if (is_readable($_SERVER['DOCUMENT_ROOT'].$directorio.'/'.$imagenSelect.'.gif')) {
93 $this->_imgSelect = $directorio.'/'.$imagenSelect;
96 $this->_imgSelect = '/www/images/'.$imagenSelect;
99 elseif (is_readable($_SERVER['DOCUMENT_ROOT'].$directorio.'/'.$imagenComun.'_f3.gif')) {
100 $this->_imgSelect = $directorio.'/'.$imagenComun.'_f3';
103 $this->_imgSelect = '/www/images/'.$imagenComun.'_f3';
111 * Funcion que devuelve un string con el html a imprimir en pantalla.
116 function toHtml() // ~X2C
118 trigger_error('Not implemented!', E_USER_WARNING);
122 } // -X2C Class :ImagenAnimada