class FormStateDecoratorBase

Same name and namespace in other branches
  1. 10 core/lib/Drupal/Core/Form/FormStateDecoratorBase.php \Drupal\Core\Form\FormStateDecoratorBase
  2. 9 core/lib/Drupal/Core/Form/FormStateDecoratorBase.php \Drupal\Core\Form\FormStateDecoratorBase
  3. 8.9.x core/lib/Drupal/Core/Form/FormStateDecoratorBase.php \Drupal\Core\Form\FormStateDecoratorBase

Decorates another form state.

Hierarchy

Expanded class hierarchy of FormStateDecoratorBase

1 file declares its use of FormStateDecoratorBase
FormStateDecoratorBaseTest.php in core/tests/Drupal/Tests/Core/Form/FormStateDecoratorBaseTest.php

File

core/lib/Drupal/Core/Form/FormStateDecoratorBase.php, line 11

Namespace

Drupal\Core\Form
View source
abstract class FormStateDecoratorBase implements FormStateInterface {
  
  /**
   * The decorated form state.
   *
   * @var \Drupal\Core\Form\FormStateInterface
   */
  protected $decoratedFormState;
  
  /**
   * {@inheritdoc}
   */
  public function setFormState(array $form_state_additions) {
    $this->decoratedFormState
      ->setFormState($form_state_additions);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function setAlwaysProcess($always_process = TRUE) {
    $this->decoratedFormState
      ->setAlwaysProcess($always_process);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function getAlwaysProcess() {
    return $this->decoratedFormState
      ->getAlwaysProcess();
  }
  
  /**
   * {@inheritdoc}
   */
  public function setButtons(array $buttons) {
    $this->decoratedFormState
      ->setButtons($buttons);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function getButtons() {
    return $this->decoratedFormState
      ->getButtons();
  }
  
  /**
   * {@inheritdoc}
   */
  public function setCached($cache = TRUE) {
    $this->decoratedFormState
      ->setCached($cache);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function isCached() {
    return $this->decoratedFormState
      ->isCached();
  }
  
  /**
   * {@inheritdoc}
   */
  public function disableCache() {
    $this->decoratedFormState
      ->disableCache();
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function setExecuted() {
    $this->decoratedFormState
      ->setExecuted();
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function isExecuted() {
    return $this->decoratedFormState
      ->isExecuted();
  }
  
  /**
   * {@inheritdoc}
   */
  public function setGroups(array $groups) {
    $this->decoratedFormState
      ->setGroups($groups);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function &getGroups() {
    return $this->decoratedFormState
      ->getGroups();
  }
  
  /**
   * {@inheritdoc}
   */
  public function setHasFileElement($has_file_element = TRUE) {
    $this->decoratedFormState
      ->setHasFileElement($has_file_element);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function hasFileElement() {
    return $this->decoratedFormState
      ->hasFileElement();
  }
  
  /**
   * {@inheritdoc}
   */
  public function setLimitValidationErrors($limit_validation_errors) {
    $this->decoratedFormState
      ->setLimitValidationErrors($limit_validation_errors);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function getLimitValidationErrors() {
    return $this->decoratedFormState
      ->getLimitValidationErrors();
  }
  
  /**
   * {@inheritdoc}
   */
  public function setMethod($method) {
    $this->decoratedFormState
      ->setMethod($method);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function isMethodType($method_type) {
    return $this->decoratedFormState
      ->isMethodType($method_type);
  }
  
  /**
   * {@inheritdoc}
   */
  public function setRequestMethod($method) {
    $this->decoratedFormState
      ->setRequestMethod($method);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function setValidationEnforced($must_validate = TRUE) {
    $this->decoratedFormState
      ->setValidationEnforced($must_validate);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function isValidationEnforced() {
    return $this->decoratedFormState
      ->isValidationEnforced();
  }
  
  /**
   * {@inheritdoc}
   */
  public function disableRedirect($no_redirect = TRUE) {
    $this->decoratedFormState
      ->disableRedirect($no_redirect);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function isRedirectDisabled() {
    return $this->decoratedFormState
      ->isRedirectDisabled();
  }
  
  /**
   * {@inheritdoc}
   */
  public function setProcessInput($process_input = TRUE) {
    $this->decoratedFormState
      ->setProcessInput($process_input);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function isProcessingInput() {
    return $this->decoratedFormState
      ->isProcessingInput();
  }
  
  /**
   * {@inheritdoc}
   */
  public function setProgrammed($programmed = TRUE) {
    $this->decoratedFormState
      ->setProgrammed($programmed);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function isProgrammed() {
    return $this->decoratedFormState
      ->isProgrammed();
  }
  
  /**
   * {@inheritdoc}
   */
  public function setProgrammedBypassAccessCheck($programmed_bypass_access_check = TRUE) {
    $this->decoratedFormState
      ->setProgrammedBypassAccessCheck($programmed_bypass_access_check);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function isBypassingProgrammedAccessChecks() {
    return $this->decoratedFormState
      ->isBypassingProgrammedAccessChecks();
  }
  
  /**
   * {@inheritdoc}
   */
  public function setRebuildInfo(array $rebuild_info) {
    $this->decoratedFormState
      ->setRebuildInfo($rebuild_info);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function getRebuildInfo() {
    return $this->decoratedFormState
      ->getRebuildInfo();
  }
  
  /**
   * {@inheritdoc}
   */
  public function addRebuildInfo($property, $value) {
    $this->decoratedFormState
      ->addRebuildInfo($property, $value);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function setStorage(array $storage) {
    $this->decoratedFormState
      ->setStorage($storage);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function &getStorage() {
    return $this->decoratedFormState
      ->getStorage();
  }
  
  /**
   * {@inheritdoc}
   */
  public function setSubmitHandlers(array $submit_handlers) {
    $this->decoratedFormState
      ->setSubmitHandlers($submit_handlers);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function getSubmitHandlers() {
    return $this->decoratedFormState
      ->getSubmitHandlers();
  }
  
  /**
   * {@inheritdoc}
   */
  public function setSubmitted() {
    $this->decoratedFormState
      ->setSubmitted();
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function isSubmitted() {
    return $this->decoratedFormState
      ->isSubmitted();
  }
  
  /**
   * {@inheritdoc}
   */
  public function setTemporary(array $temporary) {
    $this->decoratedFormState
      ->setTemporary($temporary);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function getTemporary() {
    return $this->decoratedFormState
      ->getTemporary();
  }
  
  /**
   * {@inheritdoc}
   */
  public function &getTemporaryValue($key) {
    return $this->decoratedFormState
      ->getTemporaryValue($key);
  }
  
  /**
   * {@inheritdoc}
   */
  public function setTemporaryValue($key, $value) {
    $this->decoratedFormState
      ->setTemporaryValue($key, $value);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function hasTemporaryValue($key) {
    return $this->decoratedFormState
      ->hasTemporaryValue($key);
  }
  
  /**
   * {@inheritdoc}
   */
  public function setTriggeringElement($triggering_element) {
    $this->decoratedFormState
      ->setTriggeringElement($triggering_element);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function &getTriggeringElement() {
    return $this->decoratedFormState
      ->getTriggeringElement();
  }
  
  /**
   * {@inheritdoc}
   */
  public function setValidateHandlers(array $validate_handlers) {
    $this->decoratedFormState
      ->setValidateHandlers($validate_handlers);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function getValidateHandlers() {
    return $this->decoratedFormState
      ->getValidateHandlers();
  }
  
  /**
   * {@inheritdoc}
   */
  public function setValidationComplete($validation_complete = TRUE) {
    $this->decoratedFormState
      ->setValidationComplete($validation_complete);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function isValidationComplete() {
    return $this->decoratedFormState
      ->isValidationComplete();
  }
  
  /**
   * {@inheritdoc}
   */
  public function loadInclude($module, $type, $name = NULL) {
    return $this->decoratedFormState
      ->loadInclude($module, $type, $name);
  }
  
  /**
   * {@inheritdoc}
   */
  public function getCacheableArray() {
    return $this->decoratedFormState
      ->getCacheableArray();
  }
  
  /**
   * {@inheritdoc}
   */
  public function setCompleteForm(array &$complete_form) {
    $this->decoratedFormState
      ->setCompleteForm($complete_form);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function &getCompleteForm() {
    return $this->decoratedFormState
      ->getCompleteForm();
  }
  
  /**
   * {@inheritdoc}
   */
  public function &get($property) {
    return $this->decoratedFormState
      ->get($property);
  }
  
  /**
   * {@inheritdoc}
   */
  public function set($property, $value) {
    $this->decoratedFormState
      ->set($property, $value);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function has($property) {
    return $this->decoratedFormState
      ->has($property);
  }
  
  /**
   * {@inheritdoc}
   */
  public function setBuildInfo(array $build_info) {
    $this->decoratedFormState
      ->setBuildInfo($build_info);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function getBuildInfo() {
    return $this->decoratedFormState
      ->getBuildInfo();
  }
  
  /**
   * {@inheritdoc}
   */
  public function addBuildInfo($property, $value) {
    $this->decoratedFormState
      ->addBuildInfo($property, $value);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function &getUserInput() {
    return $this->decoratedFormState
      ->getUserInput();
  }
  
  /**
   * {@inheritdoc}
   */
  public function setUserInput(array $user_input) {
    $this->decoratedFormState
      ->setUserInput($user_input);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function &getValues() {
    return $this->decoratedFormState
      ->getValues();
  }
  
  /**
   * {@inheritdoc}
   */
  public function &getValue($key, $default = NULL) {
    return $this->decoratedFormState
      ->getValue($key, $default);
  }
  
  /**
   * {@inheritdoc}
   */
  public function setValues(array $values) {
    $this->decoratedFormState
      ->setValues($values);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function setValue($key, $value) {
    $this->decoratedFormState
      ->setValue($key, $value);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function unsetValue($key) {
    $this->decoratedFormState
      ->unsetValue($key);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function hasValue($key) {
    return $this->decoratedFormState
      ->hasValue($key);
  }
  
  /**
   * {@inheritdoc}
   */
  public function isValueEmpty($key) {
    return $this->decoratedFormState
      ->isValueEmpty($key);
  }
  
  /**
   * {@inheritdoc}
   */
  public function setValueForElement(array $element, $value) {
    $this->decoratedFormState
      ->setValueForElement($element, $value);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function setResponse(Response $response) {
    $this->decoratedFormState
      ->setResponse($response);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function getResponse() {
    return $this->decoratedFormState
      ->getResponse();
  }
  
  /**
   * {@inheritdoc}
   */
  public function setRedirect($route_name, array $route_parameters = [], array $options = []) {
    $this->decoratedFormState
      ->setRedirect($route_name, $route_parameters, $options);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function setRedirectUrl(Url $url) {
    $this->decoratedFormState
      ->setRedirectUrl($url);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function getRedirect() {
    return $this->decoratedFormState
      ->getRedirect();
  }
  
  /**
   * {@inheritdoc}
   */
  public function setIgnoreDestination(bool $status = TRUE) {
    return $this->decoratedFormState
      ->setIgnoreDestination($status);
  }
  
  /**
   * {@inheritdoc}
   */
  public function getIgnoreDestination() : bool {
    return $this->decoratedFormState
      ->getIgnoreDestination();
  }
  
  /**
   * {@inheritdoc}
   */
  public static function hasAnyErrors() {
    return FormState::hasAnyErrors();
  }
  
  /**
   * {@inheritdoc}
   */
  public function setErrorByName($name, $message = '') {
    $this->decoratedFormState
      ->setErrorByName($name, $message);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function setError(array &$element, $message = '') {
    $this->decoratedFormState
      ->setError($element, $message);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function clearErrors() {
    $this->decoratedFormState
      ->clearErrors();
  }
  
  /**
   * {@inheritdoc}
   */
  public function getError(array $element) {
    return $this->decoratedFormState
      ->getError($element);
  }
  
  /**
   * {@inheritdoc}
   */
  public function getErrors() {
    return $this->decoratedFormState
      ->getErrors();
  }
  
  /**
   * {@inheritdoc}
   */
  public function setRebuild($rebuild = TRUE) {
    $this->decoratedFormState
      ->setRebuild($rebuild);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function isRebuilding() {
    return $this->decoratedFormState
      ->isRebuilding();
  }
  
  /**
   * {@inheritdoc}
   */
  public function setInvalidToken($invalid_token) {
    $this->decoratedFormState
      ->setInvalidToken($invalid_token);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function hasInvalidToken() {
    return $this->decoratedFormState
      ->hasInvalidToken();
  }
  
  /**
   * {@inheritdoc}
   */
  public function prepareCallback($callback) {
    return $this->decoratedFormState
      ->prepareCallback($callback);
  }
  
  /**
   * {@inheritdoc}
   */
  public function setFormObject(FormInterface $form_object) {
    $this->decoratedFormState
      ->setFormObject($form_object);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function getFormObject() {
    return $this->decoratedFormState
      ->getFormObject();
  }
  
  /**
   * {@inheritdoc}
   */
  public function getCleanValueKeys() {
    return $this->decoratedFormState
      ->getCleanValueKeys();
  }
  
  /**
   * {@inheritdoc}
   */
  public function setCleanValueKeys(array $cleanValueKeys) {
    $this->decoratedFormState
      ->setCleanValueKeys($cleanValueKeys);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function addCleanValueKey($cleanValueKey) {
    $this->decoratedFormState
      ->addCleanValueKey($cleanValueKey);
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function cleanValues() {
    $this->decoratedFormState
      ->cleanValues();
    return $this;
  }

}

Members

Title Sort descending Modifiers Object type Summary Overriden Title Overrides
FormStateDecoratorBase::$decoratedFormState protected property The decorated form state.
FormStateDecoratorBase::addBuildInfo public function Overrides FormStateInterface::addBuildInfo
FormStateDecoratorBase::addCleanValueKey public function Overrides FormStateInterface::addCleanValueKey
FormStateDecoratorBase::addRebuildInfo public function Overrides FormStateInterface::addRebuildInfo
FormStateDecoratorBase::cleanValues public function Overrides FormStateInterface::cleanValues
FormStateDecoratorBase::clearErrors public function Overrides FormStateInterface::clearErrors
FormStateDecoratorBase::disableCache public function Overrides FormStateInterface::disableCache
FormStateDecoratorBase::disableRedirect public function Overrides FormStateInterface::disableRedirect
FormStateDecoratorBase::get public function Overrides FormStateInterface::get
FormStateDecoratorBase::getAlwaysProcess public function Overrides FormStateInterface::getAlwaysProcess
FormStateDecoratorBase::getBuildInfo public function Overrides FormStateInterface::getBuildInfo
FormStateDecoratorBase::getButtons public function Overrides FormStateInterface::getButtons
FormStateDecoratorBase::getCacheableArray public function Overrides FormStateInterface::getCacheableArray
FormStateDecoratorBase::getCleanValueKeys public function Overrides FormStateInterface::getCleanValueKeys
FormStateDecoratorBase::getCompleteForm public function Overrides FormStateInterface::getCompleteForm
FormStateDecoratorBase::getError public function Overrides FormStateInterface::getError
FormStateDecoratorBase::getErrors public function Overrides FormStateInterface::getErrors
FormStateDecoratorBase::getFormObject public function Overrides FormStateInterface::getFormObject 1
FormStateDecoratorBase::getGroups public function Overrides FormStateInterface::getGroups
FormStateDecoratorBase::getIgnoreDestination public function Overrides FormStateInterface::getIgnoreDestination
FormStateDecoratorBase::getLimitValidationErrors public function Overrides FormStateInterface::getLimitValidationErrors 1
FormStateDecoratorBase::getRebuildInfo public function Overrides FormStateInterface::getRebuildInfo
FormStateDecoratorBase::getRedirect public function Overrides FormStateInterface::getRedirect
FormStateDecoratorBase::getResponse public function Overrides FormStateInterface::getResponse
FormStateDecoratorBase::getStorage public function Overrides FormStateInterface::getStorage
FormStateDecoratorBase::getSubmitHandlers public function Overrides FormStateInterface::getSubmitHandlers
FormStateDecoratorBase::getTemporary public function Overrides FormStateInterface::getTemporary
FormStateDecoratorBase::getTemporaryValue public function Overrides FormStateInterface::getTemporaryValue
FormStateDecoratorBase::getTriggeringElement public function Overrides FormStateInterface::getTriggeringElement
FormStateDecoratorBase::getUserInput public function Overrides FormStateInterface::getUserInput
FormStateDecoratorBase::getValidateHandlers public function Overrides FormStateInterface::getValidateHandlers
FormStateDecoratorBase::getValue public function Overrides FormStateInterface::getValue
FormStateDecoratorBase::getValues public function Overrides FormStateInterface::getValues
FormStateDecoratorBase::has public function Overrides FormStateInterface::has
FormStateDecoratorBase::hasAnyErrors public static function Overrides FormStateInterface::hasAnyErrors
FormStateDecoratorBase::hasFileElement public function Overrides FormStateInterface::hasFileElement
FormStateDecoratorBase::hasInvalidToken public function Overrides FormStateInterface::hasInvalidToken
FormStateDecoratorBase::hasTemporaryValue public function Overrides FormStateInterface::hasTemporaryValue
FormStateDecoratorBase::hasValue public function Overrides FormStateInterface::hasValue
FormStateDecoratorBase::isBypassingProgrammedAccessChecks public function Overrides FormStateInterface::isBypassingProgrammedAccessChecks
FormStateDecoratorBase::isCached public function Overrides FormStateInterface::isCached
FormStateDecoratorBase::isExecuted public function Overrides FormStateInterface::isExecuted
FormStateDecoratorBase::isMethodType public function Overrides FormStateInterface::isMethodType
FormStateDecoratorBase::isProcessingInput public function Overrides FormStateInterface::isProcessingInput
FormStateDecoratorBase::isProgrammed public function Overrides FormStateInterface::isProgrammed
FormStateDecoratorBase::isRebuilding public function Overrides FormStateInterface::isRebuilding
FormStateDecoratorBase::isRedirectDisabled public function Overrides FormStateInterface::isRedirectDisabled
FormStateDecoratorBase::isSubmitted public function Overrides FormStateInterface::isSubmitted
FormStateDecoratorBase::isValidationComplete public function Overrides FormStateInterface::isValidationComplete
FormStateDecoratorBase::isValidationEnforced public function Overrides FormStateInterface::isValidationEnforced
FormStateDecoratorBase::isValueEmpty public function Overrides FormStateInterface::isValueEmpty
FormStateDecoratorBase::loadInclude public function Overrides FormStateInterface::loadInclude
FormStateDecoratorBase::prepareCallback public function Overrides FormStateInterface::prepareCallback
FormStateDecoratorBase::set public function Overrides FormStateInterface::set
FormStateDecoratorBase::setAlwaysProcess public function Overrides FormStateInterface::setAlwaysProcess
FormStateDecoratorBase::setBuildInfo public function Overrides FormStateInterface::setBuildInfo
FormStateDecoratorBase::setButtons public function Overrides FormStateInterface::setButtons
FormStateDecoratorBase::setCached public function Overrides FormStateInterface::setCached
FormStateDecoratorBase::setCleanValueKeys public function Overrides FormStateInterface::setCleanValueKeys
FormStateDecoratorBase::setCompleteForm public function Overrides FormStateInterface::setCompleteForm
FormStateDecoratorBase::setError public function Overrides FormStateInterface::setError
FormStateDecoratorBase::setErrorByName public function Overrides FormStateInterface::setErrorByName 1
FormStateDecoratorBase::setExecuted public function Overrides FormStateInterface::setExecuted
FormStateDecoratorBase::setFormObject public function Overrides FormStateInterface::setFormObject
FormStateDecoratorBase::setFormState public function Overrides FormStateInterface::setFormState
FormStateDecoratorBase::setGroups public function Overrides FormStateInterface::setGroups
FormStateDecoratorBase::setHasFileElement public function Overrides FormStateInterface::setHasFileElement
FormStateDecoratorBase::setIgnoreDestination public function Overrides FormStateInterface::setIgnoreDestination
FormStateDecoratorBase::setInvalidToken public function Overrides FormStateInterface::setInvalidToken
FormStateDecoratorBase::setLimitValidationErrors public function Overrides FormStateInterface::setLimitValidationErrors 1
FormStateDecoratorBase::setMethod public function Overrides FormStateInterface::setMethod
FormStateDecoratorBase::setProcessInput public function Overrides FormStateInterface::setProcessInput
FormStateDecoratorBase::setProgrammed public function Overrides FormStateInterface::setProgrammed
FormStateDecoratorBase::setProgrammedBypassAccessCheck public function Overrides FormStateInterface::setProgrammedBypassAccessCheck
FormStateDecoratorBase::setRebuild public function Overrides FormStateInterface::setRebuild
FormStateDecoratorBase::setRebuildInfo public function Overrides FormStateInterface::setRebuildInfo
FormStateDecoratorBase::setRedirect public function Overrides FormStateInterface::setRedirect
FormStateDecoratorBase::setRedirectUrl public function Overrides FormStateInterface::setRedirectUrl
FormStateDecoratorBase::setRequestMethod public function Overrides FormStateInterface::setRequestMethod
FormStateDecoratorBase::setResponse public function Overrides FormStateInterface::setResponse
FormStateDecoratorBase::setStorage public function Overrides FormStateInterface::setStorage
FormStateDecoratorBase::setSubmitHandlers public function Overrides FormStateInterface::setSubmitHandlers
FormStateDecoratorBase::setSubmitted public function Overrides FormStateInterface::setSubmitted
FormStateDecoratorBase::setTemporary public function Overrides FormStateInterface::setTemporary
FormStateDecoratorBase::setTemporaryValue public function Overrides FormStateInterface::setTemporaryValue
FormStateDecoratorBase::setTriggeringElement public function Overrides FormStateInterface::setTriggeringElement
FormStateDecoratorBase::setUserInput public function Overrides FormStateInterface::setUserInput
FormStateDecoratorBase::setValidateHandlers public function Overrides FormStateInterface::setValidateHandlers
FormStateDecoratorBase::setValidationComplete public function Overrides FormStateInterface::setValidationComplete
FormStateDecoratorBase::setValidationEnforced public function Overrides FormStateInterface::setValidationEnforced
FormStateDecoratorBase::setValue public function Overrides FormStateInterface::setValue
FormStateDecoratorBase::setValueForElement public function Overrides FormStateInterface::setValueForElement
FormStateDecoratorBase::setValues public function Overrides FormStateInterface::setValues
FormStateDecoratorBase::unsetValue public function Overrides FormStateInterface::unsetValue

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