function commerce_pricelist_help in Commerce Pricelist 8
Same name and namespace in other branches
- 8.2 commerce_pricelist.module \commerce_pricelist_help()
Implements hook_help().
File
- ./
commerce_pricelist.module, line 15 - Contains commerce_pricelist.module..
Code
function commerce_pricelist_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the commerce_pricelist module.
case 'help.page.commerce_pricelist':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Set product prices through price lists') . '</p>';
return $output;
default:
}
}