You are here

public function Animal::getDefaultIconUrl in Embed 8

Gets the default icon URL for the embed type.

Return value

string The URL to the default icon. Must have been passed through file_create_url() if the file is local.

Overrides EmbedTypeInterface::getDefaultIconUrl

See also

file_create_url()

File

tests/embed_test/src/Plugin/EmbedType/Animal.php, line 60

Class

Animal
Animal test embed type.

Namespace

Drupal\embed_test\Plugin\EmbedType

Code

public function getDefaultIconUrl() {
  return '/animal.png';
}