class Test
Provides test media source.
Attributes
#[MediaSource(id: "test", label: new TranslatableMarkup("Test source"), description: new TranslatableMarkup("Test media source."), allowed_field_types: [
"string",
])]
Hierarchy
- class \Drupal\media\MediaSourceBase implements \Drupal\media\MediaSourceInterface
- class \Drupal\media_test_source\Plugin\media\Source\Test extends \Drupal\media\MediaSourceBase
Expanded class hierarchy of Test
97 string references to 'Test'
- DbLogControllerTest::testNonLatinCharacters in core/
modules/ dblog/ tests/ src/ Kernel/ DbLogControllerTest.php - Tests links with non latin characters.
- DeleteTest::testInUse in core/
modules/ file/ tests/ src/ Kernel/ DeleteTest.php - Tries deleting a file that is in use.
- DrupalSqlBaseTest::testMinimumVersion in core/
modules/ migrate_drupal/ tests/ src/ Unit/ source/ DrupalSqlBaseTest.php - @covers ::checkRequirements[[api-linebreak]]
- DrupalSqlBaseTest::testSourceDatabaseError in core/
modules/ migrate_drupal/ tests/ src/ Unit/ source/ DrupalSqlBaseTest.php - @covers ::checkRequirements[[api-linebreak]]
- EntityFormModeTest::createEntity in core/
modules/ jsonapi/ tests/ src/ Functional/ EntityFormModeTest.php - Creates the entity to be tested.
File
-
core/
modules/ media/ tests/ modules/ media_test_source/ src/ Plugin/ media/ Source/ Test.php, line 15
Namespace
Drupal\media_test_source\Plugin\media\SourceView 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' => $this->t('Attribute 1'),
'value' => 'Value 1',
],
'attribute_2' => [
'label' => $this->t('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' => $this->t('Attribute 1'),
'value' => 'Value 1',
],
'attribute_2' => [
'label' => $this->t('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' => $this->t('Test config value'),
'#default_value' => $this->configuration['test_config_value'],
];
return $form;
}
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overriden Title | Overrides |
---|---|---|---|---|---|
MediaSourceBase::$configFactory | protected | property | The config factory service. | ||
MediaSourceBase::$entityFieldManager | protected | property | The entity field manager service. | ||
MediaSourceBase::$entityTypeManager | protected | property | The entity type manager service. | ||
MediaSourceBase::$fieldTypeManager | protected | property | The field type plugin manager service. | ||
MediaSourceBase::$label | protected | property | Plugin label. | ||
MediaSourceBase::calculateDependencies | public | function | |||
MediaSourceBase::create | public static | function | 2 | ||
MediaSourceBase::createSourceField | public | function | Creates the source field definition for a type. | Overrides MediaSourceInterface::createSourceField | 2 |
MediaSourceBase::createSourceFieldStorage | protected | function | Creates the source field storage definition. | ||
MediaSourceBase::getConfiguration | public | function | |||
MediaSourceBase::getSourceFieldDefinition | public | function | Get the source field definition for a media type. | Overrides MediaSourceInterface::getSourceFieldDefinition | |
MediaSourceBase::getSourceFieldName | protected | function | Determine the name of the source field. | 2 | |
MediaSourceBase::getSourceFieldOptions | protected | function | Get the source field options for the media type form. | ||
MediaSourceBase::getSourceFieldStorage | protected | function | Returns the source field storage definition. | ||
MediaSourceBase::getSourceFieldValue | public | function | Get the primary value stored in the source field. | Overrides MediaSourceInterface::getSourceFieldValue | |
MediaSourceBase::prepareFormDisplay | public | function | Prepares the media type fields for this source in the form display. | Overrides MediaSourceInterface::prepareFormDisplay | 3 |
MediaSourceBase::prepareViewDisplay | public | function | Prepares the media type fields for this source in the view display. | Overrides MediaSourceInterface::prepareViewDisplay | 6 |
MediaSourceBase::setConfiguration | public | function | |||
MediaSourceBase::submitConfigurationForm | public | function | 1 | ||
MediaSourceBase::validateConfigurationForm | public | function | 1 | ||
MediaSourceBase::__construct | public | function | Constructs a new class instance. | 2 | |
MediaSourceInterface::METADATA_FIELD_EMPTY | constant | Default empty value for metadata fields. | |||
Test::buildConfigurationForm | public | function | Overrides MediaSourceBase::buildConfigurationForm | ||
Test::defaultConfiguration | public | function | Overrides MediaSourceBase::defaultConfiguration | ||
Test::getMetadata | public | function | Gets the value for a metadata attribute for a given media item. | Overrides MediaSourceBase::getMetadata | 1 |
Test::getMetadataAttributes | public | function | Gets a list of metadata attributes provided by this plugin. | Overrides MediaSourceInterface::getMetadataAttributes | |
Test::getPluginDefinition | public | function |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.