You are here

function notifications_help in Notifications 6.3

Same name and namespace in other branches
  1. 6.4 notifications.admin.inc \notifications_help()
  2. 7 notifications.module \notifications_help()

Implementation of hook_help()

File

./notifications.module, line 43
Notifications module

Code

function notifications_help($path, $arg) {

  // If we are on admin pages, this function is loaded
  if (function_exists('notifications_admin_help')) {
    return notifications_admin_help($path, $arg);
  }
}