function forum_form

7.x forum.module forum_form($node, $form_state)
6.x forum.module forum_form(&$node, $form_state)

Implements hook_form().

1 string reference to 'forum_form'
forum_theme in drupal-7.x/modules/forum/forum.module
Implements hook_theme().

File

drupal-7.x/modules/forum/forum.module, line 731
Provides discussion forums.

Code

function forum_form($node, $form_state) {
  $type = node_type_get_type($node);
  $form['title'] = array(
    '#type' => 'textfield',
    '#title' => check_plain($type->title_label),
    '#default_value' => !empty($node->title) ? $node->title : '',
    '#required' => TRUE, '#weight' => -5
  );

  if (!empty($node->nid)) {
    $forum_terms = $node->taxonomy_forums;
    // If editing, give option to leave shadows.
    $shadow = (count($forum_terms) > 1);
    $form['shadow'] = array('#type' => 'checkbox', '#title' => t('Leave shadow copy'), '#default_value' => $shadow, '#description' => t('If you move this topic, you can leave a link in the old forum to the new forum.'));
    $form['forum_tid'] = array('#type' => 'value', '#value' => $node->forum_tid);
  }

  return $form;
}