forum_form_container

  1. drupal
    1. 4.7
    2. 5 forum.module
    3. 6 forum.admin.inc
    4. 7 forum.admin.inc
Versions
4.7 – 5 forum_form_container($edit = array())
6 forum_form_container(&$form_state, $edit = array())
7 forum_form_container($form, &$form_state, $edit = array())

Returns a form for adding a container to the forum vocabulary

Parameters

$edit Associative array containing a container term to be added or edited.

Code

modules/forum.module, line 434

<?php
function forum_form_container($edit = array()) {
  // Handle a delete operation.
  if ($_POST['op'] == t('Delete') || $_POST['edit']['confirm']) {
    return _forum_confirm_delete($edit['tid']);
  }

  $form['name'] = array(
    '#title' => t('Container name'), 
    '#type' => 'textfield', 
    '#default_value' => $edit['name'], 
    '#maxlength' => 64, 
    '#description' => t('The container name is used to identify related forums.'), 
    '#required' => TRUE,
  );

  $form['description'] = array(
    '#type' => 'textarea', 
    '#title' => t('Description'), 
    '#default_value' => $edit['description'], 
    '#description' => t('The container description can give users more information about the forums it contains.'),
  );
  $form['parent']['#tree'] = TRUE;
  $form['parent'][0] = _forum_parent_select($edit['tid'], t('Parent'), 'container');
  $form['weight'] = array(
    '#type' => 'weight', 
    '#title' => t('Weight'), 
    '#default_value' => $edit['weight'], 
    '#description' => t('When listing containers, those with with light (small) weights get listed before containers with heavier (larger) weights. Containers with equal weights are sorted alphabetically.'),
  );

  $form['vid'] = array(
    '#type' => 'hidden', 
    '#value' => _forum_get_vid(),
  );
  $form['submit'] = array(
    '#type' => 'submit', 
    '#value' => t('Submit'),
  );
  if ($edit['tid']) {
    $form['delete'] = array(
      '#type' => 'submit',
      '#value' => t('Delete'),
    );
    $form['tid'] = array(
      '#type' => 'value',
      '#value' => $edit['tid'],
    );
  }

  return drupal_get_form('forum_form_container', $form, 'forum_form');
}
?>