我创建一个的Prestashop 1.5模块,在该模块返回办公室定制我得到了输入文本背后的错误 注意:未定义指数:名称/var/www/presta/cache/smarty/compile/7d2a4e588611a8a1dd049f82d14a4ae0b20fe990.file.form.tpl.php上线228
线228是这样的
<?php $_smarty_tpl->tpl_vars['value_text'] = new Smarty_variable($_smarty_tpl->tpl_vars['fields_value']->value[$_smarty_tpl->tpl_vars['input']->value['name']], null, 0);?>
它lookes就像它与输入文本值相关。
name
是输入文本名称。 我不知道如何解决这个问题
我displayForm
功能代码是在这里
public function displayForm()
{
$default_lang = (int)Configuration::get('PS_LANG_DEFAULT');
$id_lang = (int)Context::getContext()->language->id;
$categories = $this->getCMSCategories(false, 0, (int)$id_lang);
$options = array();
foreach ($categories as $category)
{
$pages = $this->getCMSPages((int)$category['id_cms_category'], false, (int)$id_lang);
foreach ($pages as $page){
// var_dump($page['meta_title']);exit;
$radioelement =array(
'id' => 'id_cms'.(int)$page['id_cms'],
'value' => (int)$page['id_cms'],
'label' => $page['meta_title']
);
$options[] = $radioelement;
}
}
//$spacer = str_repeat(' ', $this->spacer_size * (int)$depth);
$fields_form[0]['form'] = array(
'legend' => array(
'title' => $this->l('Settings'),
),
'input' => array(
array(
'type' => 'text', // This is a regular <input> tag.
'label' => $this->l('Name'), // The <label> for this <input> tag.
'name' => 'name', // The content of the 'id' attribute of the <input> tag.
'size' => 50, // The content of the 'size' attribute of the <input> tag.
'required' => true, // If set to true, this option must be set.
'desc' => $this->l('Please enter your name.') // A help text, displayed right next to the <input> tag.
),
array(
'type' => 'radio',
'label' => $this->l('choose a cms page'),
'name' => 'id_cms',
'class' => 't',
'values' => $options,
'is_bool' => false,
'required' => true
)
),
'submit' => array(
'title' => $this->l('Save'),
'class' => 'button',
'name'=>'submitCmsReadMore'
)
);
$helper = new HelperForm();
// Module, t oken and currentIndex
$helper->module = $this;
$helper->name_controller = $this->name;
$helper->token = Tools::getAdminTokenLite('AdminModules');
$helper->currentIndex = AdminController::$currentIndex.'&configure='.$this->name;
// Language
$helper->default_form_language = $default_lang;
$helper->allow_employee_form_lang = $default_lang;
// Title and toolbar
$helper->title = $this->displayName;
$helper->show_toolbar = true; // false -> remove toolbar
$helper->toolbar_scroll = true; // yes - > Toolbar is always visible on the top of the screen.
$helper->submit_action = 'submitCmsReadMore';
$helper->toolbar_btn = array(
'save' =>
array(
'desc' => $this->l('Save'),
'href' => AdminController::$currentIndex.'&configure='.$this->name.'&save'.$this->name.
'&token='.Tools::getAdminTokenLite('AdminModules'),
),
'back' => array(
'href' => AdminController::$currentIndex.'&token='.Tools::getAdminTokenLite('AdminModules'),
'desc' => $this->l('Back to list')
)
);
// Load current value
$helper->fields_value['MOD_CMS_READ_MORE_ID_CMS'] = Configuration::get('MOD_CMS_READ_MORE_ID_CMS');
$helper->fields_value['MOD_CMS_READ_MORE_NB_CHARS'] = Configuration::get('MOD_CMS_READ_MORE_NB_CHARS');
return $helper->generateForm($fields_form);
}
先感谢您。