class TestWithConstraints
Same name and namespace in other branches
- 10 core/modules/media/tests/modules/media_test_source/src/Plugin/media/Source/TestWithConstraints.php \Drupal\media_test_source\Plugin\media\Source\TestWithConstraints
- 11.x core/modules/media/tests/modules/media_test_source/src/Plugin/media/Source/TestWithConstraints.php \Drupal\media_test_source\Plugin\media\Source\TestWithConstraints
- 9 core/modules/media/tests/modules/media_test_source/src/Plugin/media/Source/TestWithConstraints.php \Drupal\media_test_source\Plugin\media\Source\TestWithConstraints
- 8.9.x core/modules/media/tests/modules/media_test_source/src/Plugin/media/Source/TestWithConstraints.php \Drupal\media_test_source\Plugin\media\Source\TestWithConstraints
Provides generic media type.
Attributes
#[MediaSource(id: "test_constraints", label: new TranslatableMarkup("Test source with constraints"), description: new TranslatableMarkup("Test media source that provides constraints."), allowed_field_types: [
"string_long",
])]
Hierarchy
- class \Drupal\media_test_source\Plugin\media\Source\TestWithConstraints implements \Drupal\media\MediaSourceEntityConstraintsInterface, \Drupal\media\MediaSourceFieldConstraintsInterface extends \Drupal\media_test_source\Plugin\media\Source\Test
Expanded class hierarchy of TestWithConstraints
File
-
core/
modules/ media/ tests/ modules/ media_test_source/ src/ Plugin/ media/ Source/ TestWithConstraints.php, line 15
Namespace
Drupal\media_test_source\Plugin\media\SourceView source
class TestWithConstraints extends Test implements MediaSourceEntityConstraintsInterface, MediaSourceFieldConstraintsInterface {
/**
* {@inheritdoc}
*/
public function getEntityConstraints() {
return \Drupal::state()->get('media_source_test_entity_constraints', []);
}
/**
* {@inheritdoc}
*/
public function getSourceFieldConstraints() {
return \Drupal::state()->get('media_source_test_field_constraints', []);
}
}
Members
| Title Sort descending | Modifiers | Object type | Summary | Overriden Title | Overrides |
|---|---|---|---|---|---|
| AutowiredInstanceTrait::createInstanceAutowired | public static | function | Instantiates a new instance of the implementing class using autowiring. | ||
| AutowiredInstanceTrait::getAutowireArguments | private static | function | Resolves arguments for a method using autowiring. | ||
| DependencySerializationTrait::$_entityStorages | protected | property | An array of entity type IDs keyed by the property name of their storages. | ||
| DependencySerializationTrait::$_serviceIds | protected | property | An array of service IDs keyed by property name used for serialization. | ||
| DependencySerializationTrait::__sleep | public | function | 2 | ||
| DependencySerializationTrait::__wakeup | public | function | 2 | ||
| 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 | Overrides DependentPluginInterface::calculateDependencies | ||
| MediaSourceBase::createSourceField | public | function | Overrides MediaSourceInterface::createSourceField | 2 | |
| MediaSourceBase::createSourceFieldStorage | protected | function | Creates the source field storage definition. | ||
| MediaSourceBase::getConfiguration | public | function | Overrides ConfigurableInterface::getConfiguration | ||
| MediaSourceBase::getSourceFieldDefinition | public | function | 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 | Overrides MediaSourceInterface::getSourceFieldValue | ||
| MediaSourceBase::prepareFormDisplay | public | function | Overrides MediaSourceInterface::prepareFormDisplay | 3 | |
| MediaSourceBase::prepareViewDisplay | public | function | Overrides MediaSourceInterface::prepareViewDisplay | 6 | |
| MediaSourceBase::setConfiguration | public | function | Overrides ConfigurableInterface::setConfiguration | ||
| MediaSourceBase::submitConfigurationForm | public | function | Overrides PluginFormInterface::submitConfigurationForm | 1 | |
| MediaSourceBase::validateConfigurationForm | public | function | Overrides PluginFormInterface::validateConfigurationForm | 1 | |
| MediaSourceBase::__construct | public | function | Constructs a new class instance. | Overrides PluginBase::__construct | 2 |
| MediaSourceInterface::METADATA_ATTRIBUTE_LINK_TARGET | constant | Key for "Drupal entity link target" metadata attribute. | |||
| MediaSourceInterface::METADATA_FIELD_EMPTY | constant | Default empty value for metadata fields. | |||
| MessengerTrait::$messenger | protected | property | The messenger. | 25 | |
| MessengerTrait::messenger | public | function | Gets the messenger. | 25 | |
| MessengerTrait::setMessenger | public | function | Sets the messenger. | ||
| PluginBase::$configuration | protected | property | Configuration information passed into the plugin. | 1 | |
| PluginBase::$pluginDefinition | protected | property | The plugin implementation definition. | 1 | |
| PluginBase::$pluginId | protected | property | The plugin ID. | ||
| PluginBase::create | public static | function | Instantiates a new instance of the implementing class using autowiring. | 64 | |
| PluginBase::DERIVATIVE_SEPARATOR | constant | A string which is used to separate base plugin IDs from the derivative ID. | |||
| PluginBase::getBaseId | public | function | Gets the base_plugin_id of the plugin instance. | Overrides DerivativeInspectionInterface::getBaseId | |
| PluginBase::getDerivativeId | public | function | Gets the derivative_id of the plugin instance. | Overrides DerivativeInspectionInterface::getDerivativeId | |
| PluginBase::getPluginId | public | function | Gets the plugin ID of the plugin instance. | Overrides PluginInspectionInterface::getPluginId | |
| StringTranslationTrait::$stringTranslation | protected | property | The string translation service. | 3 | |
| StringTranslationTrait::formatPlural | protected | function | Formats a string containing a count of items. | ||
| StringTranslationTrait::getNumberOfPlurals | protected | function | Returns the number of plurals supported by a given language. | ||
| StringTranslationTrait::getStringTranslation | protected | function | Gets the string translation service. | ||
| StringTranslationTrait::setStringTranslation | public | function | Sets the string translation service to use. | 2 | |
| StringTranslationTrait::t | protected | function | Translates a string to the current language or to a given language. | 1 | |
| Test::buildConfigurationForm | public | function | Overrides MediaSourceBase::buildConfigurationForm | ||
| Test::defaultConfiguration | public | function | Overrides MediaSourceBase::defaultConfiguration | ||
| Test::getMetadata | public | function | Overrides MediaSourceBase::getMetadata | 1 | |
| Test::getMetadataAttributes | public | function | Overrides MediaSourceInterface::getMetadataAttributes | ||
| Test::getPluginDefinition | public | function | Overrides PluginBase::getPluginDefinition | ||
| TestWithConstraints::getEntityConstraints | public | function | Overrides MediaSourceEntityConstraintsInterface::getEntityConstraints | ||
| TestWithConstraints::getSourceFieldConstraints | public | function | Overrides MediaSourceFieldConstraintsInterface::getSourceFieldConstraints |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.