book_admin_settings
- Versions
- 6 – 7
book_admin_settings()
Builds and returns the book settings form.
See also
book_admin_settings_validate()
Related topics
Code
modules/book/book.admin.inc, line 31
<?php
function book_admin_settings() {
$types = node_type_get_names();
$form['book_allowed_types'] = array(
'#type' => 'checkboxes',
'#title' => t('Content types allowed in book outlines'),
'#default_value' => array('book'),
'#options' => $types,
'#description' => t('Users with the %outline-perm permission can add all content types.', array('%add-perm' => t('add content to books'), '%outline-perm' => t('administer book outlines'))),
'#required' => TRUE,
);
$form['book_child_type'] = array(
'#type' => 'radios',
'#title' => t('Content type for child pages'),
'#default_value' => 'book',
'#options' => $types,
'#required' => TRUE,
);
$form['array_filter'] = array('#type' => 'value', '#value' => TRUE);
$form['#validate'][] = 'book_admin_settings_validate';
return system_settings_form($form, TRUE);
}
?>Login or register to post comments 