forum_form_container
modules/forum/forum.module, строка 432
- Версии
- 5
forum_form_container($edit = array())
- 6
forum_form_container(&$form_state, $edit = array())
Returns a form for adding a container to the forum vocabulary
Параметры
$edit
Associative array containing a container term to be added or edited.
Код
<?php
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;
}
?>
Войдите или зарегистрируйтесь, чтобы получить возможность отправлять комментарии