2

我希望你能帮助我,因为我不知道如何在 Drupal 7 的 hook_menu 中调用节点。

可能吗 ?

$items['basketfacile/planning'] = array(
        'type' => MENU_LOCAL_TASK,
        'title' => 'Test',
        'description' => "description",
        'page callback' => 'drupal_get_form',
        'page arguments' => array('basketfacile_plannings_form'),
        'access arguments' => array('access content')
    );

这是我调用表单的项目菜单,但我想调用我的 Drupal 安装中已经存在的节点表单。我们可以以文章为例。

你有想法吗?

4

1 回答 1

3

实际上,将节点嵌入到其他页面中非常容易,您可以这样做:

$items['menu/submenu'] = array(
        'type' => MENU_LOCAL_TASK,
        'title' => 'YOUR_TITLE',
        'description' => "YOUR_DESCRIPTION",
         'page callback' => 'node_add',
        'page arguments' => array('YOUR_NODE_TYPE_NAME_MACHINE'),
        'access callback' => 'node_access',
        'access arguments' => array('create', 'YOUR_NODE_TYPE_NAME_MACHINE'),
        'file' => 'node.pages.inc',
        'file path' => drupal_get_path('module', 'node')
);
于 2012-07-24T17:34:03.203 回答