How to display node/add/sometype form on another page?

后端 未结 9 1099
故里飘歌
故里飘歌 2020-12-07 22:41

The whole problem is following:

Lets say we have Items, Items can have Bids, Items can have Questions and Question can have Answer.

When an Item is displayed

9条回答
  •  余生分开走
    2020-12-07 23:26

    module_load_include('inc', 'node', 'node.pages');
    
    $form = node_add('nodetype');
    $output = drupal_render($form);
    

    If your node form has a file upload widget, you should add the following lines to the menu array:

    'file path' => drupal_get_path('module', 'node'),
    'file' => 'node.pages.inc',
    

提交回复
热议问题