]> git.llucax.com Git - mecon/meconlib.git/blob - lib/MECON/HTML/Link.php
Se agregan 2 nuevos métodos: getQueryString() y getURI().
[mecon/meconlib.git] / lib / MECON / HTML / Link.php
1 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
2 -------------------------------------------------------------------------------
3                              Ministerio de Economía
4                                     meconlib
5 -------------------------------------------------------------------------------
6 This file is part of meconlib.
7
8 meconlib is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 2 of the License, or (at your option)
11 any later version.
12
13 meconlib is distributed in the hope that it will be useful, but WITHOUT
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16  
17 You should have received a copy of the GNU General Public License; if not,
18 write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
19 Boston, MA  02111-1307  USA
20 -------------------------------------------------------------------------------
21 Creado: Thu Aug 21 15:09:10 2003
22 Autor:  @@author <@@email>
23 -------------------------------------------------------------------------------
24 $Id$
25 -----------------------------------------------------------------------------*/
26
27 require_once 'HTML/Common.php';
28
29 /**
30  * HTML Link representation.
31 When adding GET variables, if the value is an object, it looks for a toString() method, if it doesn't exists or if is an array, it serializes the object/array to get a string value.
32 This is done in toHtml() method. Object are stored as references.
33  *
34  * @package HTML
35  * @access public
36  */
37 class MECON_HTML_Link extends HTML_Common {
38     /**
39      * Variables to send via GET HTTP method.
40      *
41      * @var    array $getVars
42      * @access protected
43      */
44     var $_getVars = array();
45
46     /**
47      * Link contents.
48      *
49      * @var    array $contents
50      * @access protected
51      */
52     var $_contents = array();
53
54     /**
55      * Gets GetVars.
56      *
57      * @return array
58      * @access public
59      */
60     function getGetVars()
61     {
62         return $this->_getVars;
63     }
64
65     /**
66      * Sets GetVars.
67      *
68      * @param  array $getVars GetVars.
69      *
70      * @return void
71      * @access public
72      */
73     function setGetVars($getVars)
74     {
75         $this->_getVars = $getVars;
76     }
77
78     /**
79      * Constructor.
80      *
81      * @param  string $href Hypertext reference.
82      * @param  mixed $contents Link contents.
83      * @param  array $getVars Array (as key => value pairs) of GET variables to pass to the link.
84      * @param  array $attrs Other links (A tag) attributes.
85      *
86      * @return void
87      * @access public
88      */
89     function MECON_HTML_Link($href = '', $contents = '', $getVars = array(), $attrs = array())
90     {
91         if (is_array($attrs)) {
92             $attrs['href'] = $href;
93             if (!isset($attrs['class'])){
94                 $attrs['class'] = 'mecon_html_link';
95             }
96         } else {
97             $attrs .= " href=$href";
98         }
99         parent::HTML_Common($attrs);
100         $this->_getVars = $getVars;
101         $this->addContents($contents);
102     }
103
104     /**
105      * Converts to HTML output.
106      *
107      * @return string
108      * @access public
109      */
110     function toHtml()
111     {
112         $attrs = '';
113         foreach ($this->getAttributes() as $key => $val) {
114             if ($key == 'href') {
115                 $val = $this->getURI();
116             } else {
117                 $val = htmlentities($val);
118             }
119             $attrs .= ' ' . $key . '="' . $val . '"';
120         }
121         return "<a$attrs>" . $this->getContents() . '</a>';
122     }
123
124     /**
125      * Gets hypertext reference.
126      *
127      * @return string
128      * @access public
129      */
130     function getHref()
131     {
132         return $this->getAttribute('href');
133     }
134
135     /**
136      * Sets hypertext reference.
137      *
138      * @param  string $href Hypertext reference.
139      *
140      * @return void
141      * @access public
142      */
143     function setHref($href)
144     {
145         $this->updateAttributes(array('href' => $href));
146     }
147
148     /**
149      * Set a GET variable.
150      *
151      * @param  string $key Key for the GET variable.
152      * @param  mixed $value Value for the variable.
153      *
154      * @return void
155      * @access public
156      */
157     function setGetVar($key, $value)
158     {
159         $this->_getVars[$key] = $value;
160     }
161
162     /**
163      * Updates GET variables.
164      *
165      * @param  array $vars Array (as key => value pairs) of GET variables to update.
166 If they doesn't exists, they are added, if they exists, they are updated.
167      *
168      * @return void
169      * @access public
170      */
171     function updateGetVars($vars)
172     {
173         $this->_getVars += $vars;
174     }
175
176     /**
177      * Unsets (removes) GET variables. This method supports variable arguments.
178      *
179      * @param  string $key Key of the GET variable to remove.
180      *
181      * @return void
182      * @access public
183      */
184     function unsetGetVars($key)
185     {
186         $keys = func_get_args();
187         foreach ($keys as $key) {
188             unset($this->_getVars[$key]);
189         }
190     }
191
192     /**
193      * Adds contents to the link.
194      *
195      * @param  mixed &$contents Contents to add. Can be an object with a toHtml() method.
196      *
197      * @return void
198      * @access public
199      */
200     function addContents($contents)
201     {
202         $this->_contents[] = $contents;
203     }
204
205     /**
206      * @return string
207      * @access public
208      */
209     function getContents()
210     {
211         $html = '';
212         foreach ($this->_contents as $c) {
213             if (is_object($c) and method_exists($c, 'tohtml')) {
214                 $html .= $c->toHtml();
215             } else {
216                 $html .= htmlentities($c);
217             }
218         }
219         return $html;
220     }
221
222     /**
223      * @param  mixed $contents New link contents.
224      *
225      * @return void
226      * @access public
227      */
228     function setContents($contents)
229     {
230         $this->_contents = array($contents);
231     }
232
233     /**
234      * @param  mixed $contents New link contents.
235      *
236      * @return void
237      * @access public
238      */
239     function getCSS()
240     {
241         return '/MECON/css/html/link';
242     }
243
244     /**
245      * Gets the query string generated with the GET vars.
246      * 
247      * @return GET query string.
248      */
249     function getQueryString()
250     {
251         $vars = array();
252         foreach ($this->_getVars as $var => $v) {
253             if (is_object($v) and method_exists($v, 'tostring')) {
254                 $v = $v->tostring();
255             } elseif (is_object($v)) {
256                 $v = serialize($v);
257             }
258             if (is_array($v)) {
259                 foreach ($v as $i) {
260                     $vars[] = urlencode($var) . '[]=' . urlencode($i);
261                 }
262             } else {
263                 $vars[] = urlencode($var) . '=' . urlencode($v);
264             }
265         }
266         return join('&', $vars);
267     }
268
269     /**
270      * Gets the URI (base page with the query string).
271      * 
272      * @return URI string.
273      */
274     function getURI()
275     {
276         $query = $this->getQueryString();
277         return $this->getAttribute('href') . ($query ? "?$query" : '');
278     }
279
280 }
281
282 ?>