function forum_form
Same name and namespace in other branches
- 6.x drupal-6.x/modules/forum/forum.module \forum_form()
Implements hook_form().
3 string references to 'forum_form'
- forum_form_container in drupal-7.x/
modules/ forum/ forum.admin.inc - Form constructor for adding and editing forum containers.
- forum_form_forum in drupal-7.x/
modules/ forum/ forum.admin.inc - Form constructor for adding and editing a forum.
- forum_theme in drupal-7.x/
modules/ forum/ forum.module - Implements hook_theme().
Archivo
- drupal-7.x/
modules/ forum/ forum.module, line 731 - Provides discussion forums.
Código
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;
}