You are here

public function AvatarBase::getIdentifier in Avatar Kit 8

Gets the identifier.

Return value

string The identifier.

Overrides AvatarBaseInterface::getIdentifier

3 calls to AvatarBase::getIdentifier()
Adorable::getUrl in avatars_adorable/src/Adorable.php
Gets the URL for the avatar.
Gravatar::getUrl in avatars_gravatar/src/Gravatar.php
Gets the URL for the avatar.
Robohash::getUrl in avatars_robohash/src/Robohash.php
Gets the URL for the avatar.

File

src/AvatarBase.php, line 126

Class

AvatarBase
Abstract class for Avatar APIs.

Namespace

Drupal\avatars

Code

public function getIdentifier() {
  return $this->identifier;
}