EntityType::get

public EntityType::get($property)

Gets any arbitrary property.

Parameters

string $property: The property to retrieve.

Return value

mixed The value for that property, or NULL if the property does not exist.

Overrides EntityTypeInterface::get

File

core/lib/Drupal/Core/Entity/EntityType.php, line 317

Class

EntityType
Provides an implementation of an entity type and its metadata.

Namespace

Drupal\Core\Entity

Code

public function get($property) {
  if (property_exists($this, $property)) {
    $value = isset($this->{$property}) ? $this->{$property} : NULL;
  }
  else {
    $value = isset($this->additional[$property]) ? $this->additional[$property] : NULL;
  }
  return $value;
}
doc_Drupal
2016-10-29 09:07:56
Comments
Leave a Comment

Please login to continue.