class TestDifferentDisplays in Drupal 10
Same name and namespace in other branches
- 8 core/modules/media/tests/modules/media_test_source/src/Plugin/media/Source/TestDifferentDisplays.php \Drupal\media_test_source\Plugin\media\Source\TestDifferentDisplays
- 9 core/modules/media/tests/modules/media_test_source/src/Plugin/media/Source/TestDifferentDisplays.php \Drupal\media_test_source\Plugin\media\Source\TestDifferentDisplays
Provides test media source.
Plugin annotation
@MediaSource(
id = "test_different_displays",
label = @Translation("Test source with different displays"),
description = @Translation("Test source with different displays."),
allowed_field_types = {"entity_reference"},
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
- class \Drupal\media\MediaSourceBase implements ContainerFactoryPluginInterface, MediaSourceInterface
- class \Drupal\media_test_source\Plugin\media\Source\Test
- class \Drupal\media_test_source\Plugin\media\Source\TestDifferentDisplays
- class \Drupal\media_test_source\Plugin\media\Source\Test
- class \Drupal\media\MediaSourceBase implements ContainerFactoryPluginInterface, MediaSourceInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of TestDifferentDisplays
File
- core/
modules/ media/ tests/ modules/ media_test_source/ src/ Plugin/ media/ Source/ TestDifferentDisplays.php, line 19
Namespace
Drupal\media_test_source\Plugin\media\SourceView source
class TestDifferentDisplays extends Test {
/**
* {@inheritdoc}
*/
public function prepareViewDisplay(MediaTypeInterface $type, EntityViewDisplayInterface $display) {
parent::prepareViewDisplay($type, $display);
$source_name = $this
->getSourceFieldDefinition($type)
->getName();
$source_component = $display
->getComponent($source_name) ?: [];
$source_component['type'] = 'entity_reference_entity_id';
$display
->setComponent($source_name, $source_component);
}
/**
* {@inheritdoc}
*/
public function prepareFormDisplay(MediaTypeInterface $type, EntityFormDisplayInterface $display) {
parent::prepareFormDisplay($type, $display);
$source_name = $this
->getSourceFieldDefinition($type)
->getName();
$source_component = $display
->getComponent($source_name) ?: [];
$source_component['type'] = 'entity_reference_autocomplete_tags';
$display
->setComponent($source_name, $source_component);
}
/**
* {@inheritdoc}
*/
protected function getSourceFieldName() {
return 'field_media_different_display';
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DependencySerializationTrait:: |
protected | property | ||
DependencySerializationTrait:: |
protected | property | ||
DependencySerializationTrait:: |
public | function | 2 | |
DependencySerializationTrait:: |
public | function | 2 | |
MediaSourceBase:: |
protected | property | The config factory service. | |
MediaSourceBase:: |
protected | property | The entity field manager service. | |
MediaSourceBase:: |
protected | property | The entity type manager service. | |
MediaSourceBase:: |
protected | property | The field type plugin manager service. | |
MediaSourceBase:: |
protected | property | Plugin label. | |
MediaSourceBase:: |
public | function | ||
MediaSourceBase:: |
public static | function | 2 | |
MediaSourceBase:: |
public | function | 2 | |
MediaSourceBase:: |
protected | function | Creates the source field storage definition. | |
MediaSourceBase:: |
public | function | ||
MediaSourceBase:: |
public | function | ||
MediaSourceBase:: |
protected | function | Get the source field options for the media type form. | |
MediaSourceBase:: |
protected | function | Returns the source field storage definition. | |
MediaSourceBase:: |
public | function | ||
MediaSourceBase:: |
public | function | ||
MediaSourceBase:: |
public | function | 1 | |
MediaSourceBase:: |
public | function | 1 | |
MediaSourceBase:: |
public | function | Constructs a new class instance. | 2 |
MediaSourceInterface:: |
constant | Default empty value for metadata fields. | ||
MessengerTrait:: |
protected | property | The messenger. | 18 |
MessengerTrait:: |
public | function | Gets the messenger. | 18 |
MessengerTrait:: |
public | function | Sets the messenger. | |
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function | ||
PluginBase:: |
public | function | ||
PluginBase:: |
public | function | ||
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 3 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 1 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
Test:: |
public | function |
Form constructor. Overrides MediaSourceBase:: |
|
Test:: |
public | function |
Gets default configuration for this plugin. Overrides MediaSourceBase:: |
|
Test:: |
public | function |
Gets the value for a metadata attribute for a given media item. Overrides MediaSourceBase:: |
1 |
Test:: |
public | function |
Gets a list of metadata attributes provided by this plugin. Overrides MediaSourceInterface:: |
|
Test:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginBase:: |
|
TestDifferentDisplays:: |
protected | function |
Determine the name of the source field. Overrides MediaSourceBase:: |
|
TestDifferentDisplays:: |
public | function |
Prepares the media type fields for this source in the form display. Overrides MediaSourceBase:: |
|
TestDifferentDisplays:: |
public | function |
Prepares the media type fields for this source in the view display. Overrides MediaSourceBase:: |