我正在prestashop 1.7中创建一个模块来保存我的设置。
我还创建了一个窗体来显示我的设置。显示表格示例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'
)
);
我正在使用配置类函数将这些值保存在配置表中。
我知道如何取回它,但不知道如何在表格中显示。请找一个关于这个的指南会很有帮助的。
1条答案
按热度按时间nhhxz33t1#
将此行添加到模块上的帮助程序(在generateform之前):
并添加函数来定义值: