You are here

function views_plugin_cache_time::options_form in Views (for Drupal 7) 6.2

Same name and namespace in other branches
  1. 6.3 plugins/views_plugin_cache_time.inc \views_plugin_cache_time::options_form()
  2. 7.3 plugins/views_plugin_cache_time.inc \views_plugin_cache_time::options_form()

Provide a form to edit options for this plugin.

Overrides views_plugin::options_form

File

plugins/views_plugin_cache_time.inc, line 12

Class

views_plugin_cache_time
Simple caching of query results for Views displays.

Code

function options_form(&$form, &$form_state) {
  $options = array(
    60,
    300,
    1800,
    3600,
    21600,
    518400,
  );
  $options = drupal_map_assoc($options, 'format_interval');
  $options = array(
    -1 => t('Never cache'),
  ) + $options;
  $form['results_lifespan'] = array(
    '#type' => 'select',
    '#title' => t('Query results'),
    '#description' => t('The length of time raw query results should be cached.'),
    '#options' => $options,
    '#default_value' => $this->options['results_lifespan'],
  );
  $form['output_lifespan'] = array(
    '#type' => 'select',
    '#title' => t('Rendered output'),
    '#description' => t('The length of time rendered HTML output should be cached.'),
    '#options' => $options,
    '#default_value' => $this->options['output_lifespan'],
  );
}