function commerce_pricelist_theme in Commerce Pricelist 8.2
Same name and namespace in other branches
- 7 commerce_pricelist.module \commerce_pricelist_theme()
Implements hook_theme().
File
- ./
commerce_pricelist.module, line 81 - Allows defining prices for specific stores, customers, quantities.
Code
function commerce_pricelist_theme() {
return [
'commerce_pricelist' => [
'render element' => 'elements',
],
'commerce_pricelist_form' => [
'render element' => 'form',
],
];
}