You are here

function uc_store_ubercart_help in Ubercart 6.2

Same name and namespace in other branches
  1. 5 uc_store/uc_store.module \uc_store_ubercart_help()

Displays store help page.

1 string reference to 'uc_store_ubercart_help'
uc_store_menu in uc_store/uc_store.module
Implements hook_menu().

File

uc_store/uc_store.admin.inc, line 330
Store administration menu items.

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;
}