function select_registration_roles_help in Select registration roles 7
Implements hook_help().
File
- ./
select_registration_roles.module, line 13 - Admin can select roles that will be display on registration form.
Code
function select_registration_roles_help($path, $arg) {
switch ($path) {
case 'admin/help#select_registration_roles':
return check_markup(file_get_contents(dirname(__FILE__) . "/README.txt"));
}
}