如何为常见问题添加菜单选项卡?

发布于 2024-11-16 09:00:09 字数 509 浏览 0 评论 0原文

我已经安装了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文