function commerce_pricelist_help in Commerce Pricelist 8.2
Same name and namespace in other branches
- 8 commerce_pricelist.module \commerce_pricelist_help()
Implements hook_help().
File
- ./
commerce_pricelist.module, line 22 - Allows defining prices for specific stores, customers, quantities.
Code
function commerce_pricelist_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.commerce_pricelist':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Allows defining prices for specific stores, customers, quantities using price lists.') . '</p>';
return $output;
}
}