public function FormState::getRebuildInfo in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Form/FormState.php \Drupal\Core\Form\FormState::getRebuildInfo()
Gets the rebuild info.
Return value
array The rebuild info.
Overrides FormStateInterface::getRebuildInfo
See also
\Drupal\Core\Form\FormState::$rebuild_info
1 call to FormState::getRebuildInfo()
- FormState::addRebuildInfo in core/
lib/ Drupal/ Core/ Form/ FormState.php - Adds a value to the rebuild info.
File
- core/
lib/ Drupal/ Core/ Form/ FormState.php, line 713 - Contains \Drupal\Core\Form\FormState.
Class
- FormState
- Stores information about the state of a form.
Namespace
Drupal\Core\FormCode
public function getRebuildInfo() {
return $this->rebuild_info;
}