1
在renderform中,我有一個輸入字段,其類型爲「text」。如何爲該輸入字段設置一個值,因此每次載入表單時都應該顯示該值。我正在使用Prestashop 1.7。如何在渲染表單中的Prestashop後臺中將輸入字段類型的默認值設置爲
示例代碼:
array(
'type' => 'text',
'label' => $this->l('VENDOR_SERVER_IP'),
'name' => 'serverip',
'size' => 50,
'class' => 'fixed-width-xxl',
'required' => true,
'desc' => $this->l('Please enter your server ip.')
),