function cacheexclude_admin_settings in CacheExclude 5
Same name and namespace in other branches
- 5.2 cacheexclude.module \cacheexclude_admin_settings()
- 6.2 cacheexclude.module \cacheexclude_admin_settings()
- 7.2 cacheexclude.module \cacheexclude_admin_settings()
1 string reference to 'cacheexclude_admin_settings'
File
- ./
cacheexclude.module, line 17
Code
function cacheexclude_admin_settings() {
$form['cacheexclude_list'] = array(
'#type' => 'textarea',
'#title' => t('Pages to exclude from caching'),
'#default_value' => variable_get('cacheexclude_list', ''),
'#width' => 40,
'#height' => 10,
);
return system_settings_form($form);
}