0

在我的覆盖文件 AdminMaintenanceController 中,当维护模式处于活动状态时,我尝试添加一个输入文件以在 maintenance.tpl 上添加一个图像(动态)。字段表单正确显示在我的后台维护 IP 和交换机下方,但没有上传任何内容。

你有关于这个问题的提示或信息吗?

我在1.6

我的控制器:

class AdminMaintenanceController extends AdminMaintenanceControllerCore
{
public function __construct()
{
    $this->bootstrap = true;
    $this->className = 'Configuration';
    $this->table = 'configuration';

    parent::__construct();


    $this->fields_options = array(
        'general' => array(
            'title' =>    $this->l('General'),
            'fields' =>    array(
                'PS_SHOP_ENABLE' => array(
                    'title' => $this->l('Enable Shop'),
                    'desc' => $this->l('Activate or deactivate your shop (It is a good idea to deactivate your shop while you perform maintenance. Please note that the webservice will not be disabled).'),
                    'validation' => 'isBool',
                    'cast' => 'intval',
                    'type' => 'bool'
                ),
                'PS_MAINTENANCE_IP' => array(
                    'title' => $this->l('Maintenance IP'),
                    'hint' => $this->l('IP addresses allowed to access the front office even if the shop is disabled. Please use a comma to separate them (e.g. 42.24.4.2,127.0.0.1,99.98.97.96)'),
                    'validation' => 'isGenericName',
                    'type' => 'maintenance_ip',
                    'default' => ''
                ),
            ),
            'submit' => array('title' => $this->l('Save'))
        ),

        'image' => array(
            'title' => $this->l('Images parameters'),
            'fields' => array(
                'PS_IMG1' => array(
                    'title' => $this->l('Left side image'),
                    'type' => 'file',
                    'name' => 'PS_IMG1',
                    'thumb' => _PS_IMG_.'PS_IMG1.jpg',
                    'hint' => $this->l('Choose the photo for this side'),
                ),
            ),
            'submit' => array('title' => $this->l('Save'))
        ),
4

1 回答 1

0

您似乎只实现了表单字段显示,但没有实现文件(图像)上传过程。您需要在表单确认后实例化一个图像上传的过程

于 2018-04-20T07:12:33.400 回答