如何为常见问题添加菜单选项卡?
我已经安装了 faq 和 faq_ask 模块。 faq_ask 模块添加了“提问”的导航链接。 当我单击它时,它会向用户显示一个表单来提问。
常见问题解答模块添加了常见问题的导航链接。 当我点击它时,它会显示问题和答案列表。它包含两个选项卡“列表”和“顺序”。 我添加了第三个“提问”选项卡,现在我想在此选项卡上显示提问表单。
编辑: <代码> 函数 test_menu() {
$items = array();
$items['faq/ask_question'] =array(
'标题' => “问一个问题”,
'页面回调' => 'drupal_get_form',
'页面参数' =>数组(“test_ask_question”),
'访问回调' =>正确,
'类型' => MENU_LOCAL_TASK,
);
返回$items;
}
对此有什么想法吗???
I have installed the faq and faq_ask module.
The faq_ask module adds a navigation link of 'ask a question'.
When I click on it, it displays a form to the user to ask a question.
The faq module adds a navigation link of frequently asked questions.
When I click on it, it displays the questions and answers list. It contains two tabs 'list' and 'order'.
I have added the third tab of 'ask a question' and Now I want to display the ask a question form on this tab.
EDIT:
function test_menu() {
$items = array();
$items['faq/ask_question'] =array(
'title' => 'Ask a question',
'page callback' => 'drupal_get_form',
'page arguments' => array("test_ask_question"),
'access callback' => TRUE,
'type' => MENU_LOCAL_TASK,
);
return $items;
}
Any Idea about this???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论