]> git.llucax.com Git - mecon/meconlib.git/blob - pear_lib_tmp/HTML/Image.php
Se agrega ícono de carga.
[mecon/meconlib.git] / pear_lib_tmp / HTML / Image.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 Jun 30 19:46:34 2003                                    |
17 // | Authors: Leandro Lucarella <llucar@mecon.gov.ar>                     |
18 // |          Martín Marrese <mmarre@mecon.gov.ar>                        |
19 // +----------------------------------------------------------------------+
20 //
21 // $Id$
22 //
23
24 // +X2C includes
25 require_once 'HTML/Common.php';
26 // ~X2C
27
28 // +X2C Class 214 :Image
29 /**
30  * HTML Image representation.
31  *
32  * @access public
33  */
34 class HTML_Image extends HTML_Common {
35
36     // ~X2C
37
38     // +X2C Operation 221
39     /**
40      * Constructor.
41      *
42      * @param  string $src Image location.
43      * @param  string $alt Alternate text.
44      * @param  array $attrs Other image attributes.
45      *
46      * @return void
47      * @access public
48      */
49     function HTML_Image($src = '', $alt = '', $attrs = array())// ~X2C
50     {
51         if (is_array($attrs)) {
52             $attrs['src'] = $src;
53             $attrs['alt'] = $alt;
54         } else {
55             $attrs .= " src=$src alt=$alt";
56         }
57         parent::HTML_Common($attrs);
58     }
59     // -X2C
60
61     // +X2C Operation 216
62     /**
63      * Converts to HTML output.
64      *
65      * @return string
66      * @access public
67      */
68     function toHtml()// ~X2C
69     {
70         $attrs = '';
71         $attributes = $this->getAttributes() + array('border' => 0, 'align' => 'middle');
72         foreach ($attributes as $key => $val) {
73             $attrs .= ' ' . $key . '="' . htmlentities($val) . '"';
74         }
75         return "<IMG$attrs/>";
76     }
77     // -X2C
78
79     // +X2C Operation 217
80     /**
81      * Gets image location.
82      *
83      * @return string
84      * @access public
85      */
86     function getSrc()// ~X2C
87     {
88         return $this->getAttribute('src');
89     }
90     // -X2C
91
92     // +X2C Operation 218
93     /**
94      * Sets image location.
95      *
96      * @param  string $src Image location.
97      *
98      * @return void
99      * @access public
100      */
101     function setSrc($src)// ~X2C
102     {
103         $this->updateAttributes(array('src' => $src));
104     }
105     // -X2C
106
107     // +X2C Operation 219
108     /**
109      * Gets image alternate text.
110      *
111      * @return string
112      * @access public
113      */
114     function getAlt()// ~X2C
115     {
116         return $this->getAttribute('alt');
117     }
118     // -X2C
119
120     // +X2C Operation 220
121     /**
122      * Sets image alternate text.
123      *
124      * @param  string $alt Alternate text.
125      *
126      * @return void
127      * @access public
128      */
129     function setAlt($alt)// ~X2C
130     {
131         $this->updateAttributes(array('alt' => $alt));
132     }
133     // -X2C
134
135 } // -X2C Class :Image
136
137 ?>