You are here

function usertabs_help in User Tabs 6

Implementation of hook_help().

File

./usertabs.module, line 17
usertabs.module

Code

function usertabs_help($page, $arg) {
  switch ($page) {
    case 'admin/help#usertabs':
      return '<p>' . t('User Tabs places the usual edit account tab, which is displayed as a primary tab menu item by default, as a subtab of the view account tab. You should only activate this module if you have more than one primary tab menu items as when you active the contact module, otherwise you may end up with two secondary tabs with no primary tab. This is due to the way the drupal menu system works.') . '</p>';
  }
}