function ape_admin_settings in Advanced Page Expiration 7
Administrative settings form.
1 string reference to 'ape_admin_settings'
- ape_menu in ./
ape.module - Implements hook_menu().
File
- ./
ape.admin.inc, line 11 - Admin form for advanced page expiration module.
Code
function ape_admin_settings($form, &$form_state) {
$form['page_caching'] = array(
'#type' => 'fieldset',
'#title' => t('General page caching'),
'#collapsible' => FALSE,
'#collapsed' => FALSE,
);
$cache = variable_get('cache', 0);
$form['page_caching']['cache'] = array(
'#type' => 'checkbox',
'#title' => t('Cache pages for anonymous users'),
'#default_value' => $cache,
'#weight' => -2,
);
$period = drupal_map_assoc(array(
0,
60,
180,
300,
600,
900,
1800,
2700,
3600,
10800,
21600,
32400,
43200,
86400,
604800,
2592000,
31536000,
), 'format_interval');
$form['page_caching']['page_cache_maximum_age'] = array(
'#type' => 'select',
'#title' => t('Global page expiration'),
'#options' => $period,
'#default_value' => variable_get('page_cache_maximum_age', 0),
'#description' => t('The standard expiration lifetime for cached pages. Ideally this is set as long as possible.'),
);
$form['page_caching']['ape_exclusions'] = array(
'#type' => 'textarea',
'#title' => t('Pages to exclude from caching'),
'#default_value' => variable_get('ape_exclusions', ''),
'#width' => 40,
'#height' => 5,
'#description' => t("Specify pages by using their paths. Enter one path per line. The '*' character is a wildcard. Example paths are %blog for the blog page and %blog-wildcard for every personal blog. %front is the front page.", array(
'%blog' => 'blog',
'%blog-wildcard' => 'blog/*',
'%front' => '<front>',
)),
);
$form['page_caching_alternative'] = array(
'#type' => 'fieldset',
'#title' => t('Alternative page caching'),
'#collapsible' => FALSE,
'#collapsed' => FALSE,
);
$form['page_caching_alternative']['ape_alternative_lifetime'] = array(
'#type' => 'select',
'#title' => t('Alternative page expiration'),
'#options' => $period,
'#default_value' => variable_get('ape_alternative_lifetime', 0),
'#description' => t('An alternative page expiration lifetime. Useful for pages that should refresh at a different rate than most pages, such as a short interval like 5 minutes.'),
);
$form['page_caching_alternative']['ape_alternatives'] = array(
'#type' => 'textarea',
'#title' => t('Pages that should apply alternative cache length'),
'#default_value' => variable_get('ape_alternatives', ''),
'#width' => 40,
'#height' => 10,
'#description' => t("Specify pages by using their paths. Enter one path per line. The '*' character is a wildcard. Example paths are %blog for the blog page and %blog-wildcard for every personal blog. %front is the front page.", array(
'%blog' => 'blog',
'%blog-wildcard' => 'blog/*',
'%front' => '<front>',
)),
);
$form['server_codes'] = array(
'#type' => 'fieldset',
'#title' => t('Server response caching'),
'#collapsible' => FALSE,
'#collapsed' => FALSE,
);
$form['server_codes']['ape_301_lifetime'] = array(
'#type' => 'select',
'#title' => t('301 Redirects Expiration'),
'#options' => $period,
'#default_value' => variable_get('ape_301_lifetime', 0),
'#description' => t('Set a cache lifetime for all 301 redirects.'),
);
$form['server_codes']['ape_302_lifetime'] = array(
'#type' => 'select',
'#title' => t('302 Redirects Expiration'),
'#options' => $period,
'#default_value' => variable_get('ape_302_lifetime', 0),
'#description' => t('Set a cache lifetime for all 302 redirects.'),
);
$form['server_codes']['ape_404_lifetime'] = array(
'#type' => 'select',
'#title' => t('404 Page Not Found Expiration'),
'#options' => $period,
'#default_value' => variable_get('ape_404_lifetime', 0),
'#description' => t('Set a cache lifetime for all 404 Page Not Found responses.'),
);
return system_settings_form($form);
}