本文整理汇总了PHP中app\Menu::getNestedList方法的典型用法代码示例。如果您正苦于以下问题:PHP Menu::getNestedList方法的具体用法?PHP Menu::getNestedList怎么用?PHP Menu::getNestedList使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app\Menu
的用法示例。
在下文中一共展示了Menu::getNestedList方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: update
public function update()
{
return [FormItem::columns()->columns([[FormItem::text('title', 'Title')->required(), FormItem::text('alias', 'Alias')->required(), FormItem::textarea('description', 'Description'), FormItem::select('user_id', 'User')->model('App\\User')->display('name')->defaultValue(AdminAuth::User()->id)->nullable(), FormItem::multiselect('tag', 'Tag')->model('App\\Tag')->display('lable')], [FormItem::jSelect('menu_id', 'Menu id')->options(Model_Menu::getNestedList('level_lable'))->nullable(), FormItem::text('policies', 'Policies'), $this->formTemplateField(), FormItem::timestamp('publish', 'Publish')->defaultValue(Carbon::now()), FormItem::text('sort', 'Sort'), $this->formContextField(), FormItem::checkbox('active')->label('Active'), FormItem::jBottonLink()->url('fields?page=:id')->label('Дополнительные поля')->labelNonObject('Требуется сохранить объект')]]), FormItem::ckeditor('content', 'Content'), FormItem::columns()->columns([[$this->createField()], [FormItem::image('image', 'Image'), FormItem::images('gallery', 'Gallery')]])];
}