public FormState::getCacheableArray()
Returns an array representation of the cacheable portion of the form state.
Return value
array The cacheable portion of the form state.
Overrides FormStateInterface::getCacheableArray
File
- core/lib/Drupal/Core/Form/FormState.php, line 880
Class
- FormState
- Stores information about the state of a form.
Namespace
Drupal\Core\Form
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | public function getCacheableArray() { return [ 'build_info' => $this ->getBuildInfo(), 'response' => $this ->getResponse(), 'programmed' => $this ->isProgrammed(), 'programmed_bypass_access_check' => $this ->isBypassingProgrammedAccessChecks(), 'process_input' => $this ->isProcessingInput(), 'has_file_element' => $this ->hasFileElement(), 'storage' => $this ->getStorage(), // Use the properties directly, since self::isCached() combines them and // cannot be relied upon. 'cache' => $this ->cache, 'no_cache' => $this ->no_cache, ]; } |
Please login to continue.