public function ContentEntityBase::getFields in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Entity/ContentEntityBase.php \Drupal\Core\Entity\ContentEntityBase::getFields()
Gets an array of all field item lists.
Parameters
bool $include_computed: If set to TRUE, computed fields are included. Defaults to TRUE.
Return value
\Drupal\Core\Field\FieldItemListInterface[] An array of field item lists implementing, keyed by field name.
Overrides FieldableEntityInterface::getFields
3 calls to ContentEntityBase::getFields()
- ContentEntityBase::getIterator in core/
lib/ Drupal/ Core/ Entity/ ContentEntityBase.php - ContentEntityBase::referencedEntities in core/
lib/ Drupal/ Core/ Entity/ ContentEntityBase.php - Gets a list of entities referenced by this entity.
- ContentEntityBase::toArray in core/
lib/ Drupal/ Core/ Entity/ ContentEntityBase.php - Gets an array of all property values.
File
- core/
lib/ Drupal/ Core/ Entity/ ContentEntityBase.php, line 522 - Contains \Drupal\Core\Entity\ContentEntityBase.
Class
- ContentEntityBase
- Implements Entity Field API specific enhancements to the Entity class.
Namespace
Drupal\Core\EntityCode
public function getFields($include_computed = TRUE) {
$fields = array();
foreach ($this
->getFieldDefinitions() as $name => $definition) {
if ($include_computed || !$definition
->isComputed()) {
$fields[$name] = $this
->get($name);
}
}
return $fields;
}