You are here

function uc_store_help in Ubercart 6.2

Same name and namespace in other branches
  1. 8.4 uc_store/uc_store.module \uc_store_help()
  2. 5 uc_store/uc_store.module \uc_store_help()
  3. 7.3 uc_store/uc_store.module \uc_store_help()

Implements hook_help().

File

uc_store/uc_store.module, line 513
Contains global Ubercart functions and store administration functionality.

Code

function uc_store_help($path, $arg) {
  switch ($path) {
    case 'admin/store/customers':
      return t('This table lists out all users on your site who have placed orders.');
    case 'admin/store/customers/search':
      return t('Use this page to search through users on your site who have placed orders.');
  }
}