// Re-add multishop association on contacts

This commit is contained in:
rGaillard
2012-02-10 13:39:55 +00:00
parent 640fc3bc35
commit 2e5f10271e
@@ -108,6 +108,16 @@ class AdminContactsControllerCore extends AdminController
'class' => 'button'
)
);
if (Shop::isFeatureActive())
{
$this->fields_form['input'][] = array(
'type' => 'shop',
'label' => $this->l('Shop association:'),
'name' => 'checkBoxShopAsso',
'values' => Shop::getTree()
);
}
return parent::renderForm();
}