function talk_admin_form in Talk 5
Same name and namespace in other branches
- 6 talk.module \talk_admin_form()
- 7 talk.module \talk_admin_form()
Menu call back for admin form.
1 string reference to 'talk_admin_form'
- talk_menu in ./
talk.module - Implementation of hook_menu().
File
- ./
talk.module, line 63 - Comments are displayed in a separate 'talk' tab, for node types you wish Made for Drupal 5.x
Code
function talk_admin_form() {
$form = array();
$form['talk_title'] = array(
'#type' => 'textfield',
'#title' => t('Title of the "talk" page'),
'#default_value' => talk_title(),
);
return system_settings_form($form);
}