public function EntityBCDecorator::getProperties

Forwards the call to the decorated entity.

Overrides ComplexDataInterface::getProperties

File

drupal/core/lib/Drupal/Core/Entity/EntityBCDecorator.php, line 253
Contains \Drupal\Core\Entity\EntityBCDecorator.

Class

EntityBCDecorator
Provides backwards compatible (BC) access to entity fields.

Namespace

Drupal\Core\Entity

Code

public function getProperties($include_computed = FALSE) {
  return $this->decorated
    ->getProperties($include_computed);
}