function SectionData::setValue
Same name in other branches
- 9 core/modules/layout_builder/src/Plugin/DataType/SectionData.php \Drupal\layout_builder\Plugin\DataType\SectionData::setValue()
- 8.9.x core/modules/layout_builder/src/Plugin/DataType/SectionData.php \Drupal\layout_builder\Plugin\DataType\SectionData::setValue()
- 11.x core/modules/layout_builder/src/Plugin/DataType/SectionData.php \Drupal\layout_builder\Plugin\DataType\SectionData::setValue()
Overrides TypedData::setValue
File
-
core/
modules/ layout_builder/ src/ Plugin/ DataType/ SectionData.php, line 33
Class
- SectionData
- Provides a data type wrapping \Drupal\layout_builder\Section.
Namespace
Drupal\layout_builder\Plugin\DataTypeCode
public function setValue($value, $notify = TRUE) {
if ($value && !$value instanceof Section) {
throw new \InvalidArgumentException(sprintf('Value assigned to "%s" is not a valid section', $this->getName()));
}
parent::setValue($value, $notify);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.