function ConfigEntityAdapter::get

Overrides EntityAdapter::get

File

core/lib/Drupal/Core/Entity/Plugin/DataType/ConfigEntityAdapter.php, line 31

Class

ConfigEntityAdapter
Enhances EntityAdapter for config entities.

Namespace

Drupal\Core\Entity\Plugin\DataType

Code

public function get($property_name) {
  if (!isset($this->entity)) {
    throw new MissingDataException("Unable to get property {$property_name} as no entity has been provided.");
  }
  return $this->getConfigTypedData()
    ->get($property_name);
}

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