You are here

public function Bynder::getDefaultThumbnail in Bynder 8

Gets the default thumbnail image.

Return value

string Uri of the default thumbnail image.

Overrides MediaTypeBase::getDefaultThumbnail

1 call to Bynder::getDefaultThumbnail()
Bynder::thumbnail in src/Plugin/MediaEntity/Type/Bynder.php
Gets thumbnail image.

File

src/Plugin/MediaEntity/Type/Bynder.php, line 300

Class

Bynder
Provides media type plugin for Bynder.

Namespace

Drupal\bynder\Plugin\MediaEntity\Type

Code

public function getDefaultThumbnail() {
  return $this->config
    ->get('icon_base') . '/bynder_no_image.png';
}