function contemplate_system_settings in Content Templates (Contemplate) 5
Same name and namespace in other branches
- 6 contemplate.module \contemplate_system_settings()
- 7 contemplate.module \contemplate_system_settings()
1 string reference to 'contemplate_system_settings'
- contemplate_menu in ./
contemplate.module - Implementation of hook_menu().
File
- ./
contemplate.module, line 837 - Create templates to customize teaser and body content.
Code
function contemplate_system_settings() {
$form = array();
$form['contemplate_max_recursion_depth'] = array(
'#type' => 'textfield',
'#title' => 'Max recursion depth',
'#description' => 'How far into the node object should contemplate look? Having this set too high could cause PHP memory errors.',
'#default_value' => variable_get('contemplate_max_recursion_depth', 10),
'#size' => 5,
);
return system_settings_form($form);
}