function FormState::setCached
Sets this form to be cached.
Parameters
bool $cache: TRUE if the form should be cached, FALSE otherwise.
Return value
$this
Overrides FormStateInterface::setCached
File
- 
              core/
lib/ Drupal/ Core/ Form/ FormState.php, line 525  
Class
- FormState
 - Stores information about the state of a form.
 
Namespace
Drupal\Core\FormCode
public function setCached($cache = TRUE) {
  // Persisting $form_state is a side-effect disallowed during a "safe" HTTP
  // method.
  if ($cache && $this->isRequestMethodSafe()) {
    throw new \LogicException(sprintf('Form state caching on %s requests is not allowed.', $this->requestMethod));
  }
  $this->cache = (bool) $cache;
  return $this;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.