]> git.llucax.com Git - mecon/meconlib.git/blob - lib/Marco/ImagenAnimada.php
Se cambia a la nueva estructura de directorios a Marco.
[mecon/meconlib.git] / lib / 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 #require_once 'PEAR.php';
28
29
30 // +X2C includes
31 require_once 'Imagen.php';
32 // ~X2C
33
34 // +X2C Class 17 :ImagenAnimada
35 /**
36  * Clase para el manejo de la animacion de las imagenes. Utilizada principalmente en la barra de secciones
37  *
38  * @access public
39  */
40 class ImagenAnimada extends Imagen {
41     /**
42      * Nombre del archivo imagen.
43      *
44      * @var    string $imgMouseOn
45      *
46      * @access private
47      */
48     var $_imgMouseOn;
49
50     /**
51      * Nombre del archivo imagen.
52      *
53      * @var    string $imgSelect
54      *
55      * @access private
56      */
57     var $_imgSelect;
58
59     // ~X2C
60
61     // +X2C Operation 70
62     /**
63      * Constructor. Recibe como parametro el nombre del archivo que contiene la imagen.
64      *
65      * @param  string $imagenComun Nombre del archivo imagen.
66      * @param  string $imagenMouseOn Imagen alterna con el mouse por arriba
67      * @param  string $imagenSelect Imagen alterna cuando esta seleccionada la seccion
68      *
69      * @return void
70      *
71      * @access public
72      */
73     function ImagenAnimada($imagenComun, $imagenMouseOn = null, $imagenSelect = null) // ~X2C
74     {
75         if (!is_null($imagenComun) && $imagenComun != '') {
76             parent::Imagen($imagenComun);
77         
78             if (!is_null($imagenMouseOn) && $imagenMouseOn != ''){
79                 if (file_exists('images/'.$imagenMouseOn.'.gif')) {
80                     $this->_imgMouseOn = 'images/'.$imagenMouseOn;
81                 }
82                 else {
83                     $this->_imgMouseOn = $imagenMouseOn;
84                 }
85             }            
86             elseif (file_exists('images/'.$imagenComun.'_f2.gif')) {
87                 $this->_imgMouseOn = 'images/'.$imagenComun.'_f2';
88             }
89             else {
90                 $this->_imgMouseOn = $imagenComun.'_f2';
91             }
92             
93             if (!is_null($imagenSelect) && $imagenSelect != ''){
94                 if (file_exists('images/'.$imagenSelect.'.gif')) {
95                     $this->_imgSelect = 'images/'.$imagenSelect;
96                 }
97                 else {
98                     $this->_imgSelect = $imagenSelect;
99                 }
100             }            
101             elseif (file_exists('images/'.$imagenComun.'_f3.gif')) {
102                 $this->_imgSelect = 'images/'.$imagenComun.'_f3';
103             }
104             else {
105                 $this->_imgSelect = $imagenComun.'_f3';
106             }
107         }
108     }
109     // -X2C
110
111     // +X2C Operation 71
112     /**
113      * Funcion que devuelve un string con el html a imprimir en pantalla.
114      *
115      * @return string
116      *
117      * @access public
118      */
119     function toHtml() // ~X2C
120     {
121         trigger_error('Not implemented!', E_USER_WARNING);
122     }
123     // -X2C
124
125 } // -X2C Class :ImagenAnimada
126
127 ?>