function uc_product_help in Ubercart 5
Same name and namespace in other branches
- 6.2 uc_product/uc_product.module \uc_product_help()
Implementation of hook_help().
File
- uc_product/
uc_product.module, line 176 - The product module for Ubercart.
Code
function uc_product_help($section = '') {
// Do things here later. Figure out what you need to say for each section.
switch ($section) {
case 'admin/settings/module#description':
$output = t('Create products for sale in an online store.');
break;
}
return $output;
}