You are here

function power_menu_help in Power Menu 7.2

Implements hook_help().

File

./power_menu.module, line 84

Code

function power_menu_help($path, $arg) {
  switch ($path) {
    case 'admin/config/search/power_menu':
      $output = '<p>' . t('The power menu allows you to set active menu items based on several plugins. This is mainly necessary when nodes not "connected" with a menu item. The power menu also provides fields for every menu entry.') . '</p>';
      $output .= '<p>' . t('On this settings page, you can define in which order the menu handler should process.') . '</p>';
      return $output;
    case 'admin/config/search/power_menu/fields':
      $output = '<p>' . t('The power menu allows you to set active menu items based on several plugins. This is mainly necessary when nodes not "connected" with a menu item. The power menu also provides fields for every menu entry.') . '</p>';
      $output .= '<p>' . t('On this settings page, you can define which menu should have fields.') . '</p>';
      return $output;
  }
}