]> git.llucax.com Git - mecon/meconlib.git/blob - pear_lib_tmp/HTML/Image.php
Se arregla un bug.
[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      * List of valid HTML attributes for an Image.
37      *
38      * @var    array $validAttrs
39      * @access protected
40      */
41     var $_validAttrs = array('src', 'alt', 'longdesc', 'width', 'height', 'usemap', 'ismap', 'align', 'border', 'hspace', 'vspace', 'id', 'class', 'style', 'title', 'lang', 'dir', 'onclick', 'ondblclick', 'onmousedown', 'onmouseup', 'onmouseover', 'onmousemove', 'onmouseout', 'onkeypress', 'onkeydown', 'onkeyup');
42
43     // ~X2C
44
45     // +X2C Operation 221
46     /**
47      * Constructor.
48      *
49      * @param  string $src Image location.
50      * @param  string $alt Alternate text.
51      * @param  array $attrs Other image attributes.
52      *
53      * @return void
54      * @access public
55      */
56     function HTML_Image($src = '', $alt = '', $attrs = array())// ~X2C
57     {
58         $attrs['src'] = $src;
59         $attrs['alt'] = $alt;
60         parent::HTML_Common($attrs);
61     }
62     // -X2C
63
64     // +X2C Operation 216
65     /**
66      * Converts to HTML output.
67      *
68      * @return string
69      * @access public
70      */
71     function toHtml()// ~X2C
72     {
73         $attrs = '';
74         foreach ($this->getAttributes() as $key => $val) {
75             $attrs .= ' ' . $key . '="' . htmlentities($val) . '"';
76         }
77         return "<IMG$attrs/>";
78     }
79     // -X2C
80
81     // +X2C Operation 217
82     /**
83      * Gets image location.
84      *
85      * @return string
86      * @access public
87      */
88     function getSrc()// ~X2C
89     {
90         return $this->getAttribute('src');
91     }
92     // -X2C
93
94     // +X2C Operation 218
95     /**
96      * Sets image location.
97      *
98      * @param  string $src Image location.
99      *
100      * @return void
101      * @access public
102      */
103     function setSrc($src)// ~X2C
104     {
105         $this->updateAttributes(array('src' => $src));
106     }
107     // -X2C
108
109     // +X2C Operation 219
110     /**
111      * Gets image alternate text.
112      *
113      * @return string
114      * @access public
115      */
116     function getAlt()// ~X2C
117     {
118         return $this->getAttribute('alt');
119     }
120     // -X2C
121
122     // +X2C Operation 220
123     /**
124      * Sets image alternate text.
125      *
126      * @param  string $alt Alternate text.
127      *
128      * @return void
129      * @access public
130      */
131     function setAlt($alt)// ~X2C
132     {
133         $this->updateAttributes(array('alt' => $alt));
134     }
135     // -X2C
136
137 } // -X2C Class :Image
138
139 ?>