]> git.llucax.com Git - mecon/meconlib.git/blob - lib/Marco/Imagen.php
Se borra SAMURAI lib porque se pasó al repositorio del SAMURAI.
[mecon/meconlib.git] / lib / 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         if (file_exists('images/'.$imagen.'.gif')) {
71             $this->_imgComun = 'images/'.$imagen;
72         }
73         else {
74             $this->_imgComun = $imagen;
75         }
76         $this->_alt = $imagen;
77     }
78     // -X2C
79
80     // +X2C Operation 74
81     /**
82      * Funcion que devuelve un string con el html a imprimir en pantalla.
83      *
84      * @return string
85      *
86      * @access public
87      */
88     function toHtml() // ~X2C
89     {
90         trigger_error('Not implemented!', E_USER_WARNING);
91     }
92     // -X2C
93
94     // +X2C Operation 83
95     /**
96      *
97      * @param  string $alt Alt de la imagen.
98      *
99      * @return void
100      *
101      * @access public
102      */
103     function cargarAlt($alt) // ~X2C
104     {
105         $this->_alt = $alt;
106     }
107     // -X2C
108
109 } // -X2C Class :Imagen
110
111 ?>