public function FieldItemBase::__get in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Field/FieldItemBase.php \Drupal\Core\Field\FieldItemBase::__get()
- 9 core/lib/Drupal/Core/Field/FieldItemBase.php \Drupal\Core\Field\FieldItemBase::__get()
Magic method: Gets a property value.
Parameters
string $property_name: The name of the property to get; e.g., 'title' or 'name'.
Return value
mixed The property value.
Throws
\InvalidArgumentException If a non-existent property is accessed.
Overrides FieldItemInterface::__get
2 methods override FieldItemBase::__get()
- LayoutSectionItem::__get in core/
modules/ layout_builder/ src/ Plugin/ Field/ FieldType/ LayoutSectionItem.php - Magic method: Gets a property value.
- MapItem::__get in core/
lib/ Drupal/ Core/ Field/ Plugin/ Field/ FieldType/ MapItem.php - Magic method: Gets a property value.
File
- core/
lib/ Drupal/ Core/ Field/ FieldItemBase.php, line 136
Class
- FieldItemBase
- An entity field item.
Namespace
Drupal\Core\FieldCode
public function __get($name) {
// There is either a property object or a plain value - possibly for a
// not-defined property. If we have a plain value, directly return it.
if (isset($this->properties[$name])) {
return $this->properties[$name]
->getValue();
}
elseif (isset($this->values[$name])) {
return $this->values[$name];
}
}