You are here

answers.features.menu_custom.inc in Answers 7.3

Same filename and directory in other branches
  1. 6.2 answers.features.menu_custom.inc

File

answers.features.menu_custom.inc
View source
<?php

/**
 * @file
 * answers.features.menu_custom.inc
 */

/**
 * Implements hook_menu_default_menu_custom().
 */
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;
}

Functions

Namesort descending Description
answers_menu_default_menu_custom Implements hook_menu_default_menu_custom().