function user_relationships_help in User Relationships 5
Same name and namespace in other branches
- 5.2 user_relationships_hooks.inc \user_relationships_help()
Help
File
- ./
user_relationships_hooks.inc, line 10
Code
function user_relationships_help($section) {
switch ($section) {
case 'admin/help#user_relationships':
$output = '<p>' . t('This module allows you to create relationship types that users can use to connect to each other.') . '</p>';
return $output;
case 'admin/user/relationships':
$output = '<p>' . t('This page lets you setup user relationship types.') . '</p>';
return $output;
}
}