使用$ widget-> addFields将fileupload字段添加到OctoberCMS后端?

时间:2018-03-01 20:31:33

标签: php octobercms octobercms-plugins octobercms-backend october-form-controller

尝试使用OctoberCMS后端中的插件将类型为fileupload和模式image的表单字段添加到某个页面但收到错误。文本,下拉列表等类型工作正常。

当我将字段的名称设置为viewBag[photo]时,我收到错误"Call to a member function hasRelation() on array" on line 81 of [path]/public/modules/backend/traits/FormModelWidget.php"

当我将名称设置为photo时,我得到"Call to undefined method October\Rain\Halcyon\Builder::hasRelation()" on line 786 of [path]/public/vendor/october/rain/src/Halcyon/Builder.php"

use System\Classes\PluginBase;
use Event;

class Plugin extends PluginBase
{
    public function boot()
    {
        Event::listen('backend.form.extendFields', function($widget) {

            if (! $widget->getController() instanceof \RainLab\Pages\Controllers\Index) {
                return;
            }

            if (! $widget->model instanceof \RainLab\Pages\Classes\Page) {
                return;
            }

            switch ($widget->model->fileName) {
                case 'about.htm':
                    $widget->addFields([
                        'viewBag[photo]' => [
                            'label' => 'Photo',
                            'mode' => 'image',
                            'imageWidth' => '200',
                            'imageHeight' => '300',
                            'useCaption' => true,
                            'thumbOptions' => [
                                'mode' => 'crop',
                                'extension' => 'auto',
                            ],
                            'span' => 'auto',
                            'type' => 'fileupload',
                        ],
                    ], 'primary');
                    break;
            }

        });
    }
}

1 个答案:

答案 0 :(得分:0)

目前无法通过fileuploadaddFields类型添加到静态页面。相反,mediafinder类型必须用于图片上传。

$widget->addFields([
    'viewBag[photo]' => [
        'label' => 'Photo',
        'mode' => 'image',
        'imageWidth' => '200',
        'imageHeight' => '300',
        'useCaption' => true,
        'thumbOptions' => [
            'mode' => 'crop',
            'extension' => 'auto',
        ],
        'span' => 'auto',
        'type' => 'mediafinder',
    ],
], 'primary');