You are here

function user_settings_access_help in User Settings Access 6

Same name and namespace in other branches
  1. 7 user_settings_access.module \user_settings_access_help()

Implementation of hook_help()

File

./user_settings_access.module, line 35

Code

function user_settings_access_help($path, $arg) {
  if ($path == 'admin/help#user_settings_access') {
    $txt = 'Out of the box drupal have just one permissions adminster users which controls both user settings and users ';
    $txt .= 'So the super user can either grant both privileges to other user or none of them. ';
    $txt .= 'This mini module provides additional permission for user Settings.';
    $txt .= 'This allows now the super user to grant either user settings or users or even both privileges if wanted';
    $txt .= 'Sometime it could even helpfull to allow others to manage users but restrict the general users settings only to ';
    $txt .= 'drupal admin.';
    return '<p>' . t($txt) . '</p>';
  }
}