You are here

function apply_for_role_help in Apply for role 7.2

Same name and namespace in other branches
  1. 5 apply_for_role.module \apply_for_role_help()
  2. 6 apply_for_role.module \apply_for_role_help()
  3. 7 apply_for_role.module \apply_for_role_help()

Implements hook_help().

File

./apply_for_role.module, line 47
Allows users to apply for roles.

Code

function apply_for_role_help($path, $arg) {
  switch ($path) {
    case 'admin/help#apply_for_role':
      $output = '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('The <em>Apply for roles</em> module allows users to apply for roles from their user page and allows administrators to easily view, approve and delete role applications.', array(
        '@url' => url('admin/config/people/apply_for_role'),
      )) . '</p>';
      $output .= '<h3>' . t('Uses') . '</h3>';
      $output .= '<dl>';
      $output .= '</dl>';
      return $output;
  }
}