function OEmbed::getMetadataAttributes

Same name and namespace in other branches
  1. 8.9.x core/modules/media/src/Plugin/media/Source/OEmbed.php \Drupal\media\Plugin\media\Source\OEmbed::getMetadataAttributes()
  2. 10 core/modules/media/src/Plugin/media/Source/OEmbed.php \Drupal\media\Plugin\media\Source\OEmbed::getMetadataAttributes()
  3. 11.x core/modules/media/src/Plugin/media/Source/OEmbed.php \Drupal\media\Plugin\media\Source\OEmbed::getMetadataAttributes()

Overrides MediaSourceInterface::getMetadataAttributes

File

core/modules/media/src/Plugin/media/Source/OEmbed.php, line 214

Class

OEmbed
Provides a media source plugin for oEmbed resources.

Namespace

Drupal\media\Plugin\media\Source

Code

public function getMetadataAttributes() {
    return [
        'type' => $this->t('Resource type'),
        'title' => $this->t('Resource title'),
        'author_name' => $this->t('Author/owner name'),
        'author_url' => $this->t('Author/owner URL'),
        'provider_name' => $this->t('Provider name'),
        'provider_url' => $this->t('Provider URL'),
        'cache_age' => $this->t('Suggested cache lifetime'),
        'default_name' => $this->t('Media item default name'),
        'thumbnail_uri' => $this->t('Thumbnail local URI'),
        'thumbnail_width' => $this->t('Thumbnail width'),
        'thumbnail_height' => $this->t('Thumbnail height'),
        'url' => $this->t('Resource source URL'),
        'width' => $this->t('Resource width'),
        'height' => $this->t('Resource height'),
        'html' => $this->t('Resource HTML representation'),
    ];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.