Я создаю модуль prestashop, который должен выбрать 2 категории root.Prestashop - добавить несколько деревьев категорий с вспомогательной формой
Я попытался добавить 2 поля типа «категории», но на дереве второй категории он имеет тот же ID и тот же ИМЯ, что и первое дерево.
$fields_form[1]['form'] = array(
'legend' => array(
'title' => $this->l('Setting'),
),
'input' => array(
array(
'type' => 'text',
'label' => $this->l('First column title'),
'name' => 'HCA_TITLE_COL1',
),
array(
'type' => 'categories',
'label' => $this->l('Root category'),
'desc' => $this->l('Root category of the first column.'),
'name' => 'HCA_CAT_COL1',
'tree' => array(
'id' => 'HCA_CAT_COL1',
'selected_categories' => array((int)Configuration::get('HCA_CAT_COL1')),
)
),
array(
'type' => 'text',
'label' => $this->l('Second column title'),
'name' => 'HCA_TITLE_COL2',
),
array(
'type' => 'categories',
'label' => $this->l('Root category'),
'desc' => $this->l('Root category of the second column.'),
'name' => 'HCA_CAT_COL2',
'tree' => array(
'id' => 'HCA_CAT_COL2',
'selected_categories' => array((int)Configuration::get('HCA_CAT_COL2')),
)
),
)
);