]> git.llucax.com Git - mecon/meconlib.git/blob - marco/php/marco/Imagen.php
b9172f31a45a7a629c5eeb867d163842b8596859
[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      *
49      * @var    string $alt
50      *
51      * @access private
52      */
53     var $_alt;
54
55     // ~X2C
56
57     // +X2C Operation 73
58     /**
59      * Constructor. Recibe como parametro el nombre del archivo imagen.
60      *
61      * @param  string $imagen Nombre del archivo imagen
62      * @param  string $alt Valor HTML ALT que se le quiere asignar a la imagen.
63      *
64      * @return void
65      *
66      * @access public
67      */
68     function Imagen($imagen, $alt) // ~X2C
69     {
70         trigger_error('Not implemented!', E_USER_WARNING);
71     }
72     // -X2C
73
74     // +X2C Operation 74
75     /**
76      * Funcion que devuelve un string con el html a imprimir en pantalla.
77      *
78      * @return string
79      *
80      * @access public
81      */
82     function toHtml() // ~X2C
83     {
84         trigger_error('Not implemented!', E_USER_WARNING);
85     }
86     // -X2C
87
88 } // -X2C Class :Imagen
89
90 ?>