You are here

function answers_menu_default_menu_custom in Answers 7.3

Same name and namespace in other branches
  1. 6.2 answers.features.menu_custom.inc \answers_menu_default_menu_custom()

Implements hook_menu_default_menu_custom().

File

./answers.features.menu_custom.inc, line 11
answers.features.menu_custom.inc

Code

function answers_menu_default_menu_custom() {
  $menus = array();

  // Exported menu: menu-using-answers.
  $menus['menu-using-answers'] = array(
    'menu_name' => 'menu-using-answers',
    'title' => 'Using Answers',
    'description' => 'The "Using Answers" menu contains several links that are helpful for using the Q&A service',
  );

  // Translatables
  // Included for use with string extractors like potx.
  t('The "Using Answers" menu contains several links that are helpful for using the Q&A service');
  t('Using !Answers', answers_translation());
  return $menus;
}