You are here

OEmbedDeriver.php in Drupal 9

Same filename and directory in other branches
  1. 8 core/modules/media/src/Plugin/media/Source/OEmbedDeriver.php

File

core/modules/media/src/Plugin/media/Source/OEmbedDeriver.php
View source
<?php

namespace Drupal\media\Plugin\media\Source;

use Drupal\Component\Plugin\Derivative\DeriverBase;

/**
 * Derives media source plugin definitions for supported oEmbed providers.
 *
 * @internal
 *   This is an internal part of the oEmbed system and should only be used by
 *   oEmbed-related code in Drupal core.
 */
class OEmbedDeriver extends DeriverBase {

  /**
   * {@inheritdoc}
   */
  public function getDerivativeDefinitions($base_plugin_definition) {
    $this->derivatives = [
      'video' => [
        'id' => 'video',
        'label' => t('Remote video'),
        'description' => t('Use remote video URL for reusable media.'),
        'providers' => [
          'YouTube',
          'Vimeo',
        ],
        'default_thumbnail_filename' => 'video.png',
      ] + $base_plugin_definition,
    ];
    return parent::getDerivativeDefinitions($base_plugin_definition);
  }

}

Classes

Namesort descending Description
OEmbedDeriver Derives media source plugin definitions for supported oEmbed providers.