You are here

public function FilterCKEditorMediaEmbed::getDescription in CKEditor Media Embed Plugin 8

Returns the administrative description for this filter plugin.

Return value

string

Overrides FilterBase::getDescription

File

src/Plugin/Filter/FilterCKEditorMediaEmbed.php, line 82

Class

FilterCKEditorMediaEmbed
Provides a filter to convert URLs into links.

Namespace

Drupal\ckeditor_media_embed\Plugin\Filter

Code

public function getDescription() {
  return $this
    ->t('The provider specified as the @link will be used.', [
    '@link' => $this->ckeditorMediaEmbed
      ->getSettingsLink(),
  ]);
}