You are here

function user_relationships_ui_help in User Relationships 7

Same name and namespace in other branches
  1. 5.3 user_relationships_ui/user_relationships_ui.hooks.inc \user_relationships_ui_help()
  2. 6 user_relationships_ui/user_relationships_ui.module \user_relationships_ui_help()

Implements hook_help().

File

user_relationships_ui/user_relationships_ui.module, line 200
UI components of user_relationships @author Jeff Smick (creator) @author Alex Karshakevich (maintainer) http://drupal.org/user/183217 @author Darren Ferguson (contributor) http://drupal.org/user/70179

Code

function user_relationships_ui_help($section) {
  switch ($section) {
    case 'admin/help#user_relationships_ui':
      $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/config/people/relationships':
      $output = '<p>' . t('This page lets you setup user relationship types.') . '</p>';
      return $output;
  }
}