如何在10月CMS插件组件中为defineProperties()设置多个选择下拉类型

时间:2017-07-24 11:01:03

标签: octobercms octobercms-plugins

我正在尝试创建一个带有组件选项的图库插件,以选择要显示的图库或图库。如何使下拉列表成为多个选定的选项,而不仅仅是一个。

例如:

<select multiple>
    ...
</select>

图库组件:

public function defineProperties() {
    return [
        'gallery' => [
            'title'        => 'Galleries',
            'description'  => 'Select which gallery to display',
            'type'         => 'dropdown'
        ]
    ];
}


public function getGalleryOptions(){
    return Galleries::select('id', 'name')->orderBy('name')->get()->lists('name', 'id');
}

非常感谢任何帮助。

0 个答案:

没有答案