public function Entity::toArray in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Entity/Entity.php \Drupal\Core\Entity\Entity::toArray()
Gets an array of all property values.
Return value
mixed[] An array of property values, keyed by property name.
Overrides EntityInterface::toArray
2 methods override Entity::toArray()
- ConfigEntityBase::toArray in core/
lib/ Drupal/ Core/ Config/ Entity/ ConfigEntityBase.php - Gets an array of all property values.
- ContentEntityBase::toArray in core/
lib/ Drupal/ Core/ Entity/ ContentEntityBase.php - Gets an array of all property values.
File
- core/
lib/ Drupal/ Core/ Entity/ Entity.php, line 601 - Contains \Drupal\Core\Entity\Entity.
Class
- Entity
- Defines a base entity class.
Namespace
Drupal\Core\EntityCode
public function toArray() {
return array();
}