]> git.llucax.com Git - mecon/meconlib.git/blob - lib/MLIB/HTML/Image.php
Se agrega un ejemplo sobre la utilizacion de los PDF con la nueva clase
[mecon/meconlib.git] / lib / MLIB / HTML / Image.php
1 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
2 -------------------------------------------------------------------------------
3                                     mlib
4 -------------------------------------------------------------------------------
5 This file is part of mlib.
6
7 mlib is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2 of the License, or (at your option)
10 any later version.
11
12 mlib is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
15  
16 You should have received a copy of the GNU General Public License; if not,
17 write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18 Boston, MA  02111-1307  USA
19 -------------------------------------------------------------------------------
20 Creado: Thu Aug 21 15:09:10 2003
21 Author:  Leandro Lucarella <llucar@mecon.gov.ar>
22 -------------------------------------------------------------------------------
23 $Id$
24 -----------------------------------------------------------------------------*/
25
26 // +X2C includes
27 require_once 'HTML/Common.php';
28 // ~X2C
29
30 // +X2C Class 537 :MLIB_HTML_Image
31 /**
32  * HTML Image representation.
33  *
34  * @package HTML
35  * @access public
36  */
37 class MLIB_HTML_Image extends HTML_Common {
38     // ~X2C
39
40     // +X2C Operation 169
41     /**
42      * Constructor.
43      *
44      * @param  string $src Image location.
45      * @param  string $alt Alternate text.
46      * @param  array $attrs Other image attributes.
47      *
48      * @return void
49      * @access public
50      */
51     function MLIB_HTML_Image($src = '', $alt = '', $attrs = array()) // ~X2C
52     {
53         if (is_array($attrs)) {
54             $attrs['src'] = $src;
55             $attrs['alt'] = $alt;
56         } else {
57             $attrs .= " src=$src alt=$alt";
58         }
59         parent::HTML_Common($attrs);
60     }
61     // -X2C
62
63     // +X2C Operation 170
64     /**
65      * Converts to HTML output.
66      *
67      * @return string
68      * @access public
69      */
70     function toHtml() // ~X2C
71     {
72         $attrs = '';
73         $attributes = $this->getAttributes() + array('border' => 0);
74         foreach ($attributes as $key => $val) {
75             $attrs .= ' ' . $key . '="' . htmlentities($val) . '"';
76         }
77         return "<img$attrs/>";
78     }
79     // -X2C
80
81     // +X2C Operation 171
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 172
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 173
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 174
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 :MLIB_HTML_Image
138 ?>