function TestTranslation::getMetadata
Overrides Test::getMetadata
File
- 
              core/
modules/ media/ tests/ modules/ media_test_source/ src/ Plugin/ media/ Source/ TestTranslation.php, line 23  
Class
- TestTranslation
 - Provides test media source.
 
Namespace
Drupal\media_test_source\Plugin\media\SourceCode
public function getMetadata(MediaInterface $media, $attribute_name) {
  if ($attribute_name == 'thumbnail_uri') {
    return 'public://' . $media->language()
      ->getId() . '.png';
  }
  if ($attribute_name == 'test_thumbnail_alt') {
    $langcode = $media->language()
      ->getId();
    return $this->t('Test Thumbnail @language', [
      '@language' => $langcode,
    ], [
      'langcode' => $langcode,
    ]);
  }
  return parent::getMetadata($media, $attribute_name);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.