about_this_node_admin_settings()
about_this_node/about_this_node.module, line 41
Implementation of hook_admin_settings()
<?php
function about_this_node_admin_settings() {
$form['about_this_node_nodetypes'] = array(
'#type' => 'checkboxes',
'#title' => t('View information about these node types'),
'#options' => node_get_types('names'),
'#default_value' => variable_get('about_this_node_nodetypes', array('story')),
'#description' => t('The about this node block will appear when viewing these node types.'),
);
return system_settings_form($form);
}
?>