public ConfigEntityBase::get($property_name)
Returns the value of a property.
Parameters
string $property_name: The name of the property that should be returned.
Return value
mixed The property if it exists, or NULL otherwise.
Overrides ConfigEntityInterface::get
File
- core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php, line 157
Class
- ConfigEntityBase
- Defines a base configuration entity class.
Namespace
Drupal\Core\Config\Entity
Code
1 2 3 | public function get( $property_name ) { return isset( $this ->{ $property_name }) ? $this ->{ $property_name } : NULL; } |
Please login to continue.