You are here

function notifications_custom_help in Notifications 6.4

Same name and namespace in other branches
  1. 6 notifications_custom/notifications_custom.module \notifications_custom_help()

Implementation of hook_help().

File

notifications_custom/notifications_custom.module, line 24
Custom notifications module

Code

function notifications_custom_help($path, $arg) {
  switch ($path) {
    case 'admin/messaging/customsubs':
      $output = '<p>' . t('You can create custom subscription types and make them available in the registration form or enforce them for new users. Once you have created one or more subscription types they can be assigned to one or more users on the <a href="@user-admin">User administration page</a>.', array(
        '@user-admin' => url('admin/user/user/'),
      )) . '</p>';
      return $output;
  }
}