forum_form_container

5 forum.module forum_form_container($edit = array())
6 forum.admin.inc forum_form_container(&$form_state, $edit = array())
7 forum.admin.inc forum_form_container($form, &$form_state, $edit = array())
8 forum.admin.inc 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.:

2 string references to 'forum_form_container'

File

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

Code

function forum_form_container($edit = array()) {
  // Handle a delete operation.
  $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'],
    );
  }
  $form['#base'] = 'forum_form';

  return $form;
}
Login or register to post comments