function Time::validateOptionsForm

Same name and namespace in other branches
  1. 9 core/modules/views/src/Plugin/views/cache/Time.php \Drupal\views\Plugin\views\cache\Time::validateOptionsForm()
  2. 8.9.x core/modules/views/src/Plugin/views/cache/Time.php \Drupal\views\Plugin\views\cache\Time::validateOptionsForm()
  3. 10 core/modules/views/src/Plugin/views/cache/Time.php \Drupal\views\Plugin\views\cache\Time::validateOptionsForm()

Overrides PluginBase::validateOptionsForm

File

core/modules/views/src/Plugin/views/cache/Time.php, line 127

Class

Time
Simple caching of query results for Views displays.

Namespace

Drupal\views\Plugin\views\cache

Code

public function validateOptionsForm(&$form, FormStateInterface $form_state) {
    $custom_fields = [
        'output_lifespan',
        'results_lifespan',
    ];
    foreach ($custom_fields as $field) {
        $cache_options = $form_state->getValue('cache_options');
        if ($cache_options[$field] == 'custom' && !is_numeric($cache_options[$field . '_custom'])) {
            $form_state->setError($form[$field . '_custom'], $this->t('Custom time values must be numeric.'));
        }
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.