function uc_store_ubercart_help in Ubercart 5
Same name and namespace in other branches
- 6.2 uc_store/uc_store.admin.inc \uc_store_ubercart_help()
Display store help page.
1 string reference to 'uc_store_ubercart_help'
- uc_store_menu in uc_store/
uc_store.module - Implementation of hook_menu().
File
- uc_store/
uc_store.module, line 960 - Contains global Ubercart functions and store administration functionality.
Code
function uc_store_ubercart_help() {
$output = '<p>' . t('Use the following links to find documentation and support:') . '</p>';
$items[] = l(t("Ubercart User's Guide"), 'http://www.ubercart.org/docs/user');
$items[] = l(t('Support Forums'), 'http://www.ubercart.org/forum');
$items[] = l(t('Drupal Handbook'), 'http://drupal.org/node/258');
$output .= theme_item_list($items);
return $output;
}