]> git.llucax.com Git - mecon/meconlib.git/blob - lib/MECON/Marco/Imagen.php
Agrego un heredero de arbol que muestra los datos sacandolos de una bd
[mecon/meconlib.git] / lib / MECON / Marco / Imagen.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
31 // +X2C Class 18 :Imagen
32 /**
33  * Clase para el manejo de las imagenes.
34  *
35  * @access public
36  */
37 class Imagen {
38     /**
39      * Nombre del archivo imagen
40      *
41      * @var    string $imgComun
42      * @access private
43      */
44     var $_imgComun;
45
46     /**
47      * Alt de la imagen
48      *
49      * @var    string $alt
50      * @access private
51      */
52     var $_alt;
53
54     /**
55      * Directorio en donde se encuentran las imagenes
56      *
57      * @var    string $directorio
58      * @access private
59      */
60     var $_directorio;
61
62     // ~X2C
63
64     // +X2C Operation 73
65     /**
66      * Constructor. Recibe como parametro el nombre del archivo imagen.
67      *
68      * @param  string $imagen Nombre del archivo imagen
69      * @param  string $directorio Directorio en donde se encuentra las imagenes
70      *
71      * @return void
72      * @access public
73      */
74     function Imagen($imagen, $directorio) // ~X2C
75     {
76         if (is_readable($_SERVER['DOCUMENT_ROOT'].$directorio.'/'.$imagen.'.gif')) {
77             $this->_imgComun = $directorio.'/'.$imagen;
78         }
79         else {
80             $this->_imgComun = '/www/images/'.$imagen;
81         }
82         $this->_alt = $imagen;
83         $this->_directorio = $directorio;
84     }
85     // -X2C
86
87     // +X2C Operation 74
88     /**
89      * Funcion que devuelve un string con el html a imprimir en pantalla.
90      *
91      * @return string
92      * @access public
93      */
94     function toHtml() // ~X2C
95     {
96         trigger_error('Not implemented!', E_USER_WARNING);
97     }
98     // -X2C
99
100     // +X2C Operation 83
101     /**
102      * @param  string $alt Alt de la imagen.
103      *
104      * @return void
105      * @access public
106      */
107     function cargarAlt($alt) // ~X2C
108     {
109         $this->_alt = $alt;
110     }
111     // -X2C
112
113 } // -X2C Class :Imagen
114
115 ?>