You are here

function single_user_role_help in Single User Role 7

Same name and namespace in other branches
  1. 8 single_user_role.module \single_user_role_help()

Implements hook_help().

File

./single_user_role.module, line 105
Single User Role module file.

Code

function single_user_role_help($path, $arg) {
  switch ($path) {
    case 'admin/config/people/single-user-role':
      return '<p>' . t("This page allows to administer single user role module's configuration settings.") . '</p>';
  }
}