public FormState::addBuildInfo($property, $value)
Adds a value to the build info.
Parameters
string $property: The property to use for the value.
mixed $value: The value to set.
Return value
$this
Overrides FormStateInterface::addBuildInfo
File
- core/lib/Drupal/Core/Form/FormState.php, line 954
Class
- FormState
- Stores information about the state of a form.
Namespace
Drupal\Core\Form
Code
public function addBuildInfo($property, $value) { $build_info = $this->getBuildInfo(); $build_info[$property] = $value; $this->setBuildInfo($build_info); return $this; }
Please login to continue.