$options
$options :
通用的树型类
instance(array $options = array()) : \fast\Tree
初始化
array | $options | 参数 |
getTree(integer $myid, string $itemtpl = "<option value=@id @selected @disabled>@spacer@name</option>", mixed $selectedids = '', mixed $disabledids = '', string $itemprefix = '', string $toptpl = '') : string
树型结构Option
integer | $myid | 表示获得这个ID下的所有子级 |
string | $itemtpl | 条目模板 如:"<option value=@id @selected @disabled>@spacer@name" |
mixed | $selectedids | 被选中的ID,比如在做树型下拉框的时候需要用到 |
mixed | $disabledids | 被禁用的ID,比如在做树型下拉框的时候需要用到 |
string | $itemprefix | 每一项前缀 |
string | $toptpl | 顶级栏目的模板 |
getTreeUl(integer $myid, string $itemtpl, string $selectedids = '', string $disabledids = '', string $wraptag = 'ul', $wrapattr = '') : string
树型结构UL
integer | $myid | 表示获得这个ID下的所有子级 |
string | $itemtpl | 条目模板 如:"<li value=@id @selected @disabled>@name @childlist" |
string | $selectedids | 选中的ID |
string | $disabledids | 禁用的ID |
string | $wraptag | 子列表包裹标签 |
$wrapattr |
getTreeMenu(integer $myid, string $itemtpl, mixed $selectedids = '', mixed $disabledids = '', string $wraptag = 'ul', string $wrapattr = '', integer $deeplevel) : string
菜单数据
integer | $myid | |
string | $itemtpl | |
mixed | $selectedids | |
mixed | $disabledids | |
string | $wraptag | |
string | $wrapattr | |
integer | $deeplevel |
getTreeSpecial(integer $myid, string $itemtpl1, string $itemtpl2, mixed $selectedids, mixed $disabledids, integer $itemprefix = '')
特殊
integer | $myid | 要查询的ID |
string | $itemtpl1 | 第一种HTML代码方式 |
string | $itemtpl2 | 第二种HTML代码方式 |
mixed | $selectedids | 默认选中 |
mixed | $disabledids | 禁用 |
integer | $itemprefix | 前缀 |