answers.features.menu_custom.inc in Answers 7.3
File
answers.features.menu_custom.inc
View source
<?php
function answers_menu_default_menu_custom() {
$menus = array();
$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',
);
t('The "Using Answers" menu contains several links that are helpful for using the Q&A service');
t('Using !Answers', answers_translation());
return $menus;
}