EmbedTestDefault.php in Embed 8
Namespace
Drupal\embed_test\Plugin\EmbedTypeFile
tests/embed_test/src/Plugin/EmbedType/EmbedTestDefault.phpView source
<?php
namespace Drupal\embed_test\Plugin\EmbedType;
use Drupal\embed\EmbedType\EmbedTypeBase;
/**
* Default test embed type.
*
* @EmbedType(
* id = "embed_test_default",
* label = @Translation("Default"),
* )
*/
class EmbedTestDefault extends EmbedTypeBase {
/**
* {@inheritdoc}
*/
public function getDefaultIconUrl() {
return '/default.png';
}
}
Classes
Name | Description |
---|---|
EmbedTestDefault | Default test embed type. |