]> git.llucax.com Git - mecon/meconlib.git/blob - marco/php/marco/Imagen.php
2967be129464cf672d3f211084efd5694d2dfaaf
[mecon/meconlib.git] / marco / php / 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      *
43      * @access private
44      */
45     var $_imgComun;
46
47     /**
48      * Alt de la imagen
49      *
50      * @var    string $alt
51      *
52      * @access private
53      */
54     var $_alt;
55
56     // ~X2C
57
58     // +X2C Operation 73
59     /**
60      * Constructor. Recibe como parametro el nombre del archivo imagen.
61      *
62      * @param  string $imagen Nombre del archivo imagen
63      *
64      * @return void
65      *
66      * @access public
67      */
68     function Imagen($imagen) // ~X2C
69     {
70         $this->_imgComun = $imagen;
71         $this->_alt = $imagen;
72     }
73     // -X2C
74
75     // +X2C Operation 74
76     /**
77      * Funcion que devuelve un string con el html a imprimir en pantalla.
78      *
79      * @return string
80      *
81      * @access public
82      */
83     function toHtml() // ~X2C
84     {
85         trigger_error('Not implemented!', E_USER_WARNING);
86     }
87     // -X2C
88
89     // +X2C Operation 83
90     /**
91      *
92      * @param  string $alt Alt de la imagen.
93      *
94      * @return void
95      *
96      * @access public
97      */
98     function cargarAlt($alt) // ~X2C
99     {
100         $this->_alt = $alt;
101     }
102     // -X2C
103
104 } // -X2C Class :Imagen
105
106 ?>