You are here

MockProvider.php in Video Embed Field 8

File

tests/modules/video_embed_field_mock_provider/src/Plugin/video_embed_field/Provider/MockProvider.php
View source
<?php

namespace Drupal\video_embed_field_mock_provider\Plugin\video_embed_field\Provider;

use Drupal\video_embed_field\ProviderPluginInterface;

/**
 * A mock video provider for use in tests.
 *
 * @VideoEmbedProvider(
 *   id = "mock",
 *   title = @Translation("Mock Provider")
 * )
 */
class MockProvider implements ProviderPluginInterface {

  /**
   * {@inheritdoc}
   */
  public static function isApplicable($input) {
    return strpos($input, 'example.com') !== FALSE;
  }

  /**
   * {@inheritdoc}
   */
  public function renderThumbnail($image_style, $link_url) {
    return [
      '#markup' => 'Mock provider thumbnail.',
    ];
  }

  /**
   * {@inheritdoc}
   */
  public function renderEmbedCode($width, $height, $autoplay) {
    return [
      '#markup' => 'Mock provider embed code.',
    ];
  }

  /**
   * {@inheritdoc}
   */
  public function getRemoteThumbnailUrl() {
    return '';
  }

  /**
   * {@inheritdoc}
   */
  public function getLocalThumbnailUri() {
    return '';
  }

  /**
   * {@inheritdoc}
   */
  public function downloadThumbnail() {
    return TRUE;
  }

  /**
   * {@inheritdoc}
   */
  public static function getIdFromInput($input) {
    return $input;
  }

  /**
   * {@inheritdoc}
   */
  public function getName() {
    return 'Video Name';
  }

  /**
   * {@inheritdoc}
   */
  public function getPluginId() {
    return 'foo';
  }

  /**
   * {@inheritdoc}
   */
  public function getPluginDefinition() {
    return [];
  }

}

Classes

Namesort descending Description
MockProvider A mock video provider for use in tests.