本文整理匯總了PHP中Floxim\Floxim\System\Fx::tree方法的典型用法代碼示例。如果您正苦於以下問題:PHP Fx::tree方法的具體用法?PHP Fx::tree怎麽用?PHP Fx::tree使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Floxim\Floxim\System\Fx
的用法示例。
在下文中一共展示了Fx::tree方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: doList
public function doList()
{
$this->onItemsReady(function ($e) {
$ctr = $e['controller'];
$items = $e['items'];
$extra_ib_ids = (array) $ctr->getParam('extra_infoblocks', array());
$extra_ibs = fx::data('infoblock')->where('id', $extra_ib_ids, 'in')->all();
foreach ($extra_ibs as $extra_ib) {
$extra_q = $extra_ib->initController()->getFinder()->where('infoblock_id', $extra_ib['id']);
$extra_items = $extra_q->all();
$items->concat($extra_items);
}
if (!$ctr->getParam('is_fake')) {
$items->unique();
}
$e['items'] = fx::tree($items, 'submenu', $ctr->getParam('extra_root_ids', array()));
});
return parent::doList();
}