Test.php

Same filename in this branch
  1. 11.x core/modules/system/tests/modules/test_page_test/src/Controller/Test.php
Same filename and directory in other branches
  1. 9 core/modules/media/tests/modules/media_test_source/src/Plugin/media/Source/Test.php
  2. 9 core/modules/system/tests/modules/test_page_test/src/Controller/Test.php
  3. 8.9.x core/modules/media/tests/modules/media_test_source/src/Plugin/media/Source/Test.php
  4. 8.9.x core/modules/system/tests/modules/test_page_test/src/Controller/Test.php
  5. 10 core/modules/media/tests/modules/media_test_source/src/Plugin/media/Source/Test.php
  6. 10 core/modules/system/tests/modules/test_page_test/src/Controller/Test.php

Namespace

Drupal\media_test_source\Plugin\media\Source

File

core/modules/media/tests/modules/media_test_source/src/Plugin/media/Source/Test.php

View source
<?php

declare (strict_types=1);
namespace Drupal\media_test_source\Plugin\media\Source;

use Drupal\Component\Utility\NestedArray;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\media\Attribute\MediaSource;
use Drupal\media\MediaInterface;
use Drupal\media\MediaSourceBase;

/**
 * Provides test media source.
 */
class Test extends MediaSourceBase {
  
  /**
   * {@inheritdoc}
   */
  public function getMetadataAttributes() {
    // The metadata attributes are kept in state storage. This allows tests to
    // change the metadata attributes and makes it easier to test different
    // variations.
    $attributes = \Drupal::state()->get('media_source_test_attributes', [
      'attribute_1' => [
        'label' => 'Attribute 1',
        'value' => 'Value 1',
      ],
      'attribute_2' => [
        'label' => 'Attribute 2',
        'value' => 'Value 1',
      ],
    ]);
    return array_map(function ($item) {
      return $item['label'];
    }, $attributes);
  }
  
  /**
   * {@inheritdoc}
   */
  public function getMetadata(MediaInterface $media, $attribute_name) {
    $attributes = \Drupal::state()->get('media_source_test_attributes', [
      'attribute_1' => [
        'label' => 'Attribute 1',
        'value' => 'Value 1',
      ],
      'attribute_2' => [
        'label' => 'Attribute 2',
        'value' => 'Value 1',
      ],
    ]);
    if (in_array($attribute_name, array_keys($attributes))) {
      return $attributes[$attribute_name]['value'];
    }
    return parent::getMetadata($media, $attribute_name);
  }
  
  /**
   * {@inheritdoc}
   */
  public function getPluginDefinition() {
    return NestedArray::mergeDeep(parent::getPluginDefinition(), \Drupal::state()->get('media_source_test_definition', []));
  }
  
  /**
   * {@inheritdoc}
   */
  public function defaultConfiguration() {
    return parent::defaultConfiguration() + [
      'test_config_value' => 'This is default value.',
    ];
  }
  
  /**
   * {@inheritdoc}
   */
  public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
    $form = parent::buildConfigurationForm($form, $form_state);
    $form['test_config_value'] = [
      '#type' => 'textfield',
      '#title' => 'Test config value',
      '#default_value' => $this->configuration['test_config_value'],
    ];
    return $form;
  }

}

Classes

Title Deprecated Summary
Test Provides test media source.

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