]> git.llucax.com Git - mecon/meconlib.git/blob - pear_lib_tmp/HTML/Image.php
Se agrega la primera versión de HTML_Link y se corrige HTML_Image.
[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('border' => 0))// ~X2C
57     {
58         if (is_array($attrs)) {
59             $attrs['src'] = $src;
60             $attrs['alt'] = $alt;
61         } else {
62             $attrs .= " src=$src alt=$alt";
63         }
64         parent::HTML_Common($attrs);
65     }
66     // -X2C
67
68     // +X2C Operation 216
69     /**
70      * Converts to HTML output.
71      *
72      * @return string
73      * @access public
74      */
75     function toHtml()// ~X2C
76     {
77         $attrs = '';
78         foreach ($this->getAttributes() as $key => $val) {
79             $attrs .= ' ' . $key . '="' . htmlentities($val) . '"';
80         }
81         return "<IMG$attrs/>";
82     }
83     // -X2C
84
85     // +X2C Operation 217
86     /**
87      * Gets image location.
88      *
89      * @return string
90      * @access public
91      */
92     function getSrc()// ~X2C
93     {
94         return $this->getAttribute('src');
95     }
96     // -X2C
97
98     // +X2C Operation 218
99     /**
100      * Sets image location.
101      *
102      * @param  string $src Image location.
103      *
104      * @return void
105      * @access public
106      */
107     function setSrc($src)// ~X2C
108     {
109         $this->updateAttributes(array('src' => $src));
110     }
111     // -X2C
112
113     // +X2C Operation 219
114     /**
115      * Gets image alternate text.
116      *
117      * @return string
118      * @access public
119      */
120     function getAlt()// ~X2C
121     {
122         return $this->getAttribute('alt');
123     }
124     // -X2C
125
126     // +X2C Operation 220
127     /**
128      * Sets image alternate text.
129      *
130      * @param  string $alt Alternate text.
131      *
132      * @return void
133      * @access public
134      */
135     function setAlt($alt)// ~X2C
136     {
137         $this->updateAttributes(array('alt' => $alt));
138     }
139     // -X2C
140
141 } // -X2C Class :Image
142
143 ?>