You are here

function cacheexclude_admin_settings in CacheExclude 5

Same name and namespace in other branches
  1. 5.2 cacheexclude.module \cacheexclude_admin_settings()
  2. 6.2 cacheexclude.module \cacheexclude_admin_settings()
  3. 7.2 cacheexclude.module \cacheexclude_admin_settings()
1 string reference to 'cacheexclude_admin_settings'
cacheexclude_menu in ./cacheexclude.module

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);
}