public function EntityEmbedDisplayBase::getAttributeValues in Entity Embed 8
Gets the values for all attributes.
Return value
array An array of set attribute values, keyed by attribute name.
3 calls to EntityEmbedDisplayBase::getAttributeValues()
- EntityEmbedDisplayBase::getAttributeValue in src/
EntityEmbedDisplay/ EntityEmbedDisplayBase.php  - Gets the value for an attribute.
 - EntityEmbedDisplayBase::hasAttribute in src/
EntityEmbedDisplay/ EntityEmbedDisplayBase.php  - Checks if an attribute is set.
 - ImageFieldFormatter::getFieldValue in src/
Plugin/ entity_embed/ EntityEmbedDisplay/ ImageFieldFormatter.php  - Get the field value required to pass into the field formatter.
 
File
- src/
EntityEmbedDisplay/ EntityEmbedDisplayBase.php, line 306  
Class
- EntityEmbedDisplayBase
 - Defines a base Entity Embed Display implementation.
 
Namespace
Drupal\entity_embed\EntityEmbedDisplayCode
public function getAttributeValues() {
  return $this->attributes;
}