function SubformState::setErrorByName

Overrides FormStateDecoratorBase::setErrorByName

File

core/lib/Drupal/Core/Form/SubformState.php, line 149

Class

SubformState
Stores information about the state of a subform.

Namespace

Drupal\Core\Form

Code

public function setErrorByName($name, $message = '') {
  $parents = $this->subform['#array_parents'];
  $parents[] = $name;
  $name = implode('][', $parents);
  parent::setErrorByName($name, $message);
  return $this;
}

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