Skip to content

Instantly share code, notes, and snippets.

@PrestaEdit
Created September 16, 2014 22:14
Show Gist options
  • Save PrestaEdit/934d0ee283e2bd7d709f to your computer and use it in GitHub Desktop.
Save PrestaEdit/934d0ee283e2bd7d709f to your computer and use it in GitHub Desktop.
AdminXXXController extends ModuleAdminController
public function renderForm()
{
// ...
$this->fields_form[0]['form'] = array(
array(
'label' => $this->l('Manufacturers:'),
'name' => 'manufacturers',
'type' => 'checkbox_manufacturers',
'values' => array(
'query' => Manufacturer::getManufacturers(),
'id' => 'id_manufacturer',
'name' => 'name'
),
'required' => true
)
);
// ...
}
{elseif $input.type == 'checkbox_manufacturers'}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment