ACC SHELL

Path : /srv/www/vhosts/ambfinance/admin/library/TF/Html/
File Upload :
Current File : /srv/www/vhosts/ambfinance/admin/library/TF/Html/List.php

<?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