You are here

function admin_menu_source_help in Administration Menu Source 7

Implements hook_help().

File

./admin_menu_source.module, line 10
Use a different menu as the Administration Menu.

Code

function admin_menu_source_help($path, $arg) {
  switch ($path) {
    case 'admin/config/administration/admin_menu/source':
      return '<p>' . t('Set the source menu for the Administration menu per role.') . '</p>';
  }
}