]> git.llucax.com Git - mecon/meconlib.git/blob - lib/MECON/Marco/ImagenAnimada.php
Se limpia ImagenAnimada para que devuelva el HTML en el futuro (va a usar
[mecon/meconlib.git] / lib / MECON / Marco / ImagenAnimada.php
1 <?php
2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
3 // +----------------------------------------------------------------------+
4 // | PHP Version 4                                                        |
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 // +----------------------------------------------------------------------+
19 //
20 // $Id$
21 // $Author$
22 // $URL$
23 // $Date$
24 // $Rev$
25 //
26
27 define('MECON_MARCO_IMAGENANIMADA_DIR_GENERAL', '/MECON/images');
28
29 // +X2C Class 17 :ImagenAnimada
30 /**
31  * Clase para el manejo de la animacion de las imagenes. Utilizada principalmente en la barra de secciones
32  *
33  * @access public
34  */
35 class ImagenAnimada {
36     /**
37      * Nombre del archivo imagen.
38      *
39      * @var    string $imgComun
40      * @access private
41      */
42     var $_imgComun;
43
44     /**
45      * Nombre del archivo imagen.
46      *
47      * @var    string $imgMouseOn
48      * @access private
49      */
50     var $_imgMouseOn;
51
52     /**
53      * Nombre del archivo imagen.
54      *
55      * @var    string $imgSelect
56      * @access private
57      */
58     var $_imgSelect;
59
60     // ~X2C
61
62     // +X2C Operation 70
63     /**
64      * Constructor. Recibe como parametro el nombre del archivo que contiene la imagen.
65      *
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
70      *
71      * @return void
72      * @access public
73      */
74     function ImagenAnimada($imagenComun, $imagenMouseOn = '', $imagenSelect = '', $directorio = '')// ~X2C
75     {
76         if ($imagenComun !== '') {
77             $this->_imgComun = $this->_calcularImagen($imagenComun, $directorio);
78             if ($imagenMouseOn !== '') {
79                 $this->_imgMouseOn = $this->_calcularImagen($imagenMouseOn, $directorio);
80             }
81             else {
82                 $this->_imgMouseOn = $this->_calcularImagen($imagenMouseOn, $directorio, '_f2');
83             }
84             if ($imagenSelect !== '') {
85                 $this->_imgSelect = $this->_calcularImagen($imagenSelect, $directorio);
86             }
87             else {
88                 $this->_imgSelect = $this->_calcularImagen($imagenSelect, $directorio, '_f3');
89             }
90         }
91     }
92     // -X2C
93
94     // +X2C Operation 71
95     /**
96      * Funcion que devuelve un string con el html a imprimir en pantalla.
97      *
98      * @return string
99      * @access public
100      */
101     function toHtml()// ~X2C
102     {
103         trigger_error('Poner javascript, crear imagen y detectar si esta seleccionada o no (o pasarlo por el constructor)', E_USER_WARNING);
104     }
105     // -X2C
106
107     // +X2C Operation 209
108     /**
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.
112      *
113      * @return string
114      * @access protected
115      */
116     function _calcularImagen($imagen, $directorio, $modificador = '')// ~X2C
117     {
118         if ($modificador !== '') {
119             $pos = strrpos($imagen, '.');
120             $ext = substr($imagen, $pos);
121             $nom = substr($imagen, 0, $pos);
122             $imagen = "$nom$modificador$ext";
123         }
124         if (is_readable("{$_SERVER['DOCUMENT_ROOT']}$directorio/$imagen")) {
125             return "$directorio/$imagen";
126         }
127         else {
128             return MECON_MARCO_IMAGENANIMADA_DIR_GENERAL . "/$imagen";
129         }
130     }
131     // -X2C
132
133 } // -X2C Class :ImagenAnimada
134
135 ?>