1463 |
alexandre_ |
1 |
<?php
|
|
|
2 |
// +----------------------------------------------------------------------+
|
|
|
3 |
// | PEAR :: I18Nv2 :: DecoratedList :: HtmlEntities |
|
|
|
4 |
// +----------------------------------------------------------------------+
|
|
|
5 |
// | This source file is subject to version 3.0 of the PHP license, |
|
|
|
6 |
// | that is available at http://www.php.net/license/3_0.txt |
|
|
|
7 |
// | If you did not receive a copy of the PHP license and are unable |
|
|
|
8 |
// | to obtain it through the world-wide-web, please send a note to |
|
|
|
9 |
// | license@php.net so we can mail you a copy immediately. |
|
|
|
10 |
// +----------------------------------------------------------------------+
|
|
|
11 |
// | Copyright (c) 2004 Michael Wallner <mike@iworks.at> |
|
|
|
12 |
// +----------------------------------------------------------------------+
|
|
|
13 |
//
|
|
|
14 |
// $Id: HtmlEntities.php,v 1.1 2007-06-25 09:55:28 alexandre_tb Exp $
|
|
|
15 |
|
|
|
16 |
/**
|
|
|
17 |
* I18Nv2::DecoratedList::HtmlEntities
|
|
|
18 |
*
|
|
|
19 |
* @package I18Nv2
|
|
|
20 |
* @category Internationalization
|
|
|
21 |
*/
|
|
|
22 |
|
|
|
23 |
require_once 'I18Nv2/DecoratedList.php';
|
|
|
24 |
|
|
|
25 |
/**
|
|
|
26 |
* I18Nv2_Decorator_HtmlEntities
|
|
|
27 |
*
|
|
|
28 |
* @author Michael Wallner <mike@php.net>
|
|
|
29 |
* @version $Revision: 1.1 $
|
|
|
30 |
* @package I18Nv2
|
|
|
31 |
* @access public
|
|
|
32 |
*/
|
|
|
33 |
class I18Nv2_DecoratedList_HtmlEntities extends I18Nv2_DecoratedList
|
|
|
34 |
{
|
|
|
35 |
/**
|
|
|
36 |
* decorate
|
|
|
37 |
*
|
|
|
38 |
* @access protected
|
|
|
39 |
* @return mixed
|
|
|
40 |
* @param mixed $value
|
|
|
41 |
*/
|
|
|
42 |
function decorate($value)
|
|
|
43 |
{
|
|
|
44 |
if (is_string($value)) {
|
|
|
45 |
return htmlEntities($value, ENT_QUOTES, $this->list->getEncoding());
|
|
|
46 |
} elseif (is_array($value)) {
|
|
|
47 |
return array_map(array(&$this, 'decorate'), $value);
|
|
|
48 |
}
|
|
|
49 |
return $value;
|
|
|
50 |
}
|
|
|
51 |
}
|
|
|
52 |
?>
|