You are here

function user_relationships_ui_help in User Relationships 5.3

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

Help

File

user_relationships_ui/user_relationships_ui.hooks.inc, line 10

Code

function user_relationships_ui_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;
  }
}