ACC SHELL
<?php
class TF_Html_List extends TF_Html
{
function __construct ($data = array(), $type = "ul", $attributes = array(), $isXhtml = true)
{
if (($type != "ul") && ($type != "ol")) {
throw new Zend_Exception("Invalid list type: $type", 500);
}
parent::__construct($type, null, $attributes, false, $isXhtml);
foreach($data as $item){
$this->addItem($item);
}
}
/**
* addItem
*/
private function addItem($item){
$this->addChild("li",$item);
} /* of addItem -------------------------------------*/
}
ACC SHELL 2018