du2986 2018-10-25 05:49
浏览 80
已采纳

在prestashop 1.7中显示表单文本字段中的配置值

I am creating a module in prestashop 1.7 to save my settings.

Also I created a form to display my settings. Form sample is shown below:-

//display form function

public function renderCustomerForm()
{
    $this->fields_form = array(
        'legend' => array(
            'title' => $this->l('Customer  Settings'),
            'icon' => 'icon-time'
            ),
        'input'=>array(
            array(
                'type' => 'text',
                'label' => $this->l('BusinessCustomerFlag'),
                'name' => 'C_BUSINESS_FLAG',
                'lang' => false,
                'required' => true
                ),      

            ),
        'submit' => array(
            'title' => $this->l('Save'),           
            'name' => 'submitCustomer',            
            'icon' => 'process-icon-save'  
            )
        );

I am saving this values in configuration table using configuration class functions.

I know how to retrieve it but don't know how to show in the form. Please some one guide on this will be really helpful.

  • 写回答

1条回答 默认 最新

  • donglian1523 2018-10-25 08:35
    关注

    Add this line to helper on your module (before generateForm):

    $helper->fields_value = $this->getFormValues();
    

    and add function to define values:

    public function getFormValues()
    {
        $fields_value = array();
        $fields_value['C_BUSINESS_FLAG'] = "some data or retrieved data";
    
        return $fields_value;
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 ETLCloud 处理json多层级问题
  • ¥15 matlab中使用gurobi时报错
  • ¥15 这个主板怎么能扩出一两个sata口
  • ¥15 不是,这到底错哪儿了😭
  • ¥15 2020长安杯与连接网探
  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么
  • ¥15 banner广告展示设置多少时间不怎么会消耗用户价值
  • ¥15 可见光定位matlab仿真
  • ¥15 arduino 四自由度机械臂
  • ¥15 wordpress 产品图片 GIF 没法显示