Source for file DecoratedList.php
Documentation is available at DecoratedList.php
// +----------------------------------------------------------------------+
// | PEAR :: I18Nv2 :: DecoratedList |
// +----------------------------------------------------------------------+
// | This source file is subject to version 3.0 of the PHP license, |
// | that is available at http://www.php.net/license/3_0.txt |
// | If you did not receive a copy of the PHP license and are unable |
// | to obtain it through the world-wide-web, please send a note to |
// | license@php.net so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
// | Copyright (c) 2004 Michael Wallner <mike@iworks.at> |
// +----------------------------------------------------------------------+
// $Id: DecoratedList.php,v 1.4 2004/06/01 17:51:21 mike Exp $
* @author Michael Wallner <mike@php.net>
* @version $Revision: 1.4 $
* I18Nv2_(Common|Decorated)List
* @param object $list I18Nv2_DecoratedList or I18Nv2_CommonList
function __construct (&$list)
if (is_a($list, 'I18Nv2_CommonList') ||
is_a($list, 'I18Nv2_DecoratedList')) {
* @return object I18NV2_DecoratedList
require_once 'I18Nv2/DecoratedList/'. $type . '.php';
$decoratedList = 'I18Nv2_DecoratedList_' . $type;
return new $decoratedList($this);
Documentation generated on Mon, 11 Mar 2019 13:54:49 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|