You are here

function og_menu_help in Organic Groups Menu (OG Menu) 7.2

Same name and namespace in other branches
  1. 5 og_menu.module \og_menu_help()
  2. 7.3 og_menu.module \og_menu_help()

Implements hook_help().

File

./og_menu.module, line 31
Integrates Menu with Organic Groups. Lots of menu forms duplication in OG context.

Code

function og_menu_help($path, $arg) {
  switch ($path) {
    case 'admin/structure/og_menu':
      return '<p>' . t('Add new menus on the <a href="@menu">Menu administration page</a>.', array(
        '@menu' => url('admin/structure/menu'),
      )) . '</p>';
      break;
  }
}