You are here

TestDataTypeDeriver.php in Drupal 9

File

core/tests/Drupal/Tests/Core/Plugin/Fixtures/Plugin/DataType/TestDataTypeDeriver.php
View source
<?php

namespace Drupal\Tests\Core\Plugin\Fixtures\Plugin\DataType;

use Drupal\Component\Plugin\Derivative\DeriverBase;

/**
 * Provides a deriver that returns a plugin for the bare ID and one variant.
 */
class TestDataTypeDeriver extends DeriverBase {

  /**
   * {@inheritdoc}
   */
  public function getDerivativeDefinitions($base_plugin_definition) {
    foreach ([
      '',
      'a_variant',
    ] as $item) {
      $this->derivatives[$item] = $base_plugin_definition;
      $this->derivatives[$item]['provider'] = 'core';
    }
    return $this->derivatives;
  }

}

Classes

Namesort descending Description
TestDataTypeDeriver Provides a deriver that returns a plugin for the bare ID and one variant.