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, all content associated with this Item should also be displayed. Additionally depending on roles, certain forms to make Bids, ask Questions and replay Answers should be display.

How to achieve this? Should I have separate node type for each type? Or should I treat some subtypes like Questions and Answers as comments? Should I use some well-known modules for this?

I am using Drupal 7 and I tried to write a custom module but I didn't get it working properly.

link|improve this question

50% accept rate
feedback

5 Answers

up vote 6 down vote accepted

To get a node edit form, you need to include node.pages.inc.

<?php
  // required for Drupal 6
  module_load_include('inc', 'node', 'node.pages'); 
  // which nodeform you want
  $node_type = 'YOURNODETYPE';
  $form_id = $node_type . '_node_form';
  // maybe add current users info
  global $user;
  // create a blank node
  $node = array(
    'uid' => $user->uid,
    'name' => (isset($user->name) ? $user->name : ''),
    'type' => $node_type,
  );
  // Invoke hook_nodapi and hook_node
  node_object_prepare($node);
  // Or you can also use an exiting node, for example
  // $node = node_load(123);
  // and the display the form:
  $output = drupal_get_form($form_id, $node);
?>
link|improve this answer
"create a blank node" section isn't working for drupal 7, but I found a solution for that. thanks – user506259 Mar 18 '11 at 23:33
which solution? share please – o_O Tync Apr 20 at 11:20
The code above is wrong for d7. As said @user462645 below, the $node variable has to be an object module_load_include('inc', 'node', 'node.pages'); $node_type = 'yournodetype'; $form_id = $node_type . '_node_form'; global $user; $node = new stdClass(); $node->uid = $user->uid; $node->name = (isset($user->name) ? $user->name : ''); $node->type = $node_type; $node->language = ''; node_object_prepare($node); return drupal_get_form($form_id, $node); – volocuga May 2 at 16:10
feedback
module_load_include('inc', 'node', 'node.pages');

$form = node_add('nodetype');
$output = drupal_render($form);
link|improve this answer
feedback

The Module Form Block is the easiest way to embed a node form on a page. Then I would use views with a block display and an argument to show a tabular listing of these related nodes.

Although the Drupal 7 comment module is built on fields it really isn't quite flexible enough for non comment like things. If you want your sub-type to have a title and body then comments is probably the way to go. If you only want custom fields then a node is the way to go and possibly using something like Automatic Nodetitles.

link|improve this answer
feedback

In Drupal 7 the blank node needs to be created as an object (not an array).

  $node->uid = $user->uid;
  $node->name = (isset($user->name) ? $user->name : '');
  $node->type = $node_type;
  $node->language = '';
link|improve this answer
feedback

Thomas's answer looks good to me: Formblocks and perhaps automatic nodetitles. I think you could expand on that with Nodereference URL Widget -- using nodereferences rather than comments, and letting that module do the work of keeping child-nodes connected to their parent.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.