Same name and namespace in other branches
  1. 4.6.x modules/forum.module \forum_form()
  2. 4.7.x modules/forum.module \forum_form()
  3. 5.x modules/forum/forum.module \forum_form()
  4. 7.x modules/forum/forum.module \forum_form()

Implementation of hook_form().

2 string references to 'forum_form'
forum_form_container in modules/forum/forum.admin.inc
Returns a form for adding a container to the forum vocabulary
forum_form_forum in modules/forum/forum.admin.inc
Returns a form for adding a forum to the forum vocabulary

File

modules/forum/forum.module, line 450
Enable threaded discussions about general topics.

Code

function forum_form(&$node, $form_state) {
  $type = node_get_types('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)) {
    $vid = variable_get('forum_nav_vocabulary', '');
    $forum_terms = taxonomy_node_get_terms_by_vocabulary($node, $vid);

    // 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['body_field'] = node_body_field($node, $type->body_label, 1);
  $form['#submit'][] = 'forum_submit';

  // Assign the forum topic submit handler.
  return $form;
}