abstract class EntityRoutingMapBase in Form mode manager 8
Same name and namespace in other branches
- 8.2 src/EntityRoutingMapBase.php \Drupal\form_mode_manager\EntityRoutingMapBase
Base class for form mode manager entity routing plugin.
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\form_mode_manager\EntityRoutingMapBase implements ContainerFactoryPluginInterface, EntityRoutingMapInterface uses StringTranslationTrait
Expanded class hierarchy of EntityRoutingMapBase
4 files declare their use of EntityRoutingMapBase
- BlockContent.php in src/
Plugin/ EntityRoutingMap/ BlockContent.php - Generic.php in src/
Plugin/ EntityRoutingMap/ Generic.php - Node.php in src/
Plugin/ EntityRoutingMap/ Node.php - User.php in src/
Plugin/ EntityRoutingMap/ User.php
File
- src/
EntityRoutingMapBase.php, line 13
Namespace
Drupal\form_mode_managerView source
abstract class EntityRoutingMapBase extends PluginBase implements EntityRoutingMapInterface, ContainerFactoryPluginInterface {
use StringTranslationTrait;
/**
* Plugin label.
*
* @var string
*/
protected $label;
/**
* Default form class Definition name.
*
* @var string
*/
protected $defaultFormClass;
/**
* Default editing form class Definition name.
*
* @var string
*/
protected $editFormClass;
/**
* Entity type id of entity.
*
* @var string
*/
protected $targetEntityType;
/**
* Constructs display plugin.
*
* @param array $configuration
* A configuration array containing information about the plugin instance.
* @param string $plugin_id
* The plugin_id for the plugin instance.
* @param mixed $plugin_definition
* The plugin implementation definition.
*/
public function __construct(array $configuration, $plugin_id, $plugin_definition) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this
->setConfiguration($configuration);
$this
->setDefaultFormClass();
$this
->setEditFormClass();
$this
->setTargetEntityType();
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition);
}
/**
* {@inheritdoc}
*/
public function getOperation($operation_name) {
if (isset($this->pluginDefinition['operations'][$operation_name])) {
return $this->pluginDefinition['operations'][$operation_name];
}
return FALSE;
}
/**
* {@inheritdoc}
*/
public function getOperations() {
return $this->pluginDefinition['operations'];
}
/**
* {@inheritdoc}
*/
public function getConfiguration() {
return $this->configuration;
}
/**
* {@inheritdoc}
*/
public function getDefaultFormClass() {
return $this->defaultFormClass;
}
/**
* {@inheritdoc}
*/
public function getEditFormClass() {
return $this->editFormClass;
}
/**
* {@inheritdoc}
*/
public function setConfiguration(array $configuration) {
$configuration += $this
->defaultConfiguration();
if ($this
->getPluginId() === 'generic') {
$this
->setTargetEntityType();
$this
->setOperations();
}
$this->configuration = $configuration;
}
/**
* {@inheritdoc}
*/
public function setOperations() {
return FALSE;
}
/**
* {@inheritdoc}
*/
public function setDefaultFormClass() {
$this->defaultFormClass = $this->pluginDefinition['defaultFormClass'];
}
/**
* {@inheritdoc}
*/
public function setEditFormClass() {
$this->editFormClass = $this->pluginDefinition['editFormClass'];
}
/**
* {@inheritdoc}
*/
public function getTargetEntityType() {
return $this->targetEntityType;
}
/**
* {@inheritdoc}
*/
public function setTargetEntityType() {
if (empty($this->pluginDefinition['targetEntityType']) && !empty($this->configuration['entityTypeId'])) {
$this->pluginDefinition['targetEntityType'] = $this->configuration['entityTypeId'];
}
$this->targetEntityType = $this->pluginDefinition['targetEntityType'];
}
/**
* {@inheritdoc}
*/
public function label() {
return $this->label;
}
/**
* {@inheritdoc}
*/
public function calculateDependencies() {
return [];
}
/**
* {@inheritdoc}
*/
public function defaultConfiguration() {
return [];
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
EntityRoutingMapBase:: |
protected | property | Default form class Definition name. | |
EntityRoutingMapBase:: |
protected | property | Default editing form class Definition name. | |
EntityRoutingMapBase:: |
protected | property | Plugin label. | |
EntityRoutingMapBase:: |
protected | property | Entity type id of entity. | |
EntityRoutingMapBase:: |
public | function |
Calculates dependencies for the configured plugin. Overrides DependentPluginInterface:: |
|
EntityRoutingMapBase:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
|
EntityRoutingMapBase:: |
public | function |
Gets default configuration for this plugin. Overrides ConfigurablePluginInterface:: |
1 |
EntityRoutingMapBase:: |
public | function |
Gets this plugin's configuration. Overrides ConfigurablePluginInterface:: |
|
EntityRoutingMapBase:: |
public | function |
Get the default form class Definition. Overrides EntityRoutingMapInterface:: |
|
EntityRoutingMapBase:: |
public | function |
Get the edit form class Definition. Overrides EntityRoutingMapInterface:: |
|
EntityRoutingMapBase:: |
public | function |
Return the form operation route for given operation. Overrides EntityRoutingMapInterface:: |
|
EntityRoutingMapBase:: |
public | function |
Return the form operation route mapping. Overrides EntityRoutingMapInterface:: |
|
EntityRoutingMapBase:: |
public | function |
Gets the target entity type. Overrides EntityRoutingMapInterface:: |
|
EntityRoutingMapBase:: |
public | function |
Returns the display label. Overrides EntityRoutingMapInterface:: |
|
EntityRoutingMapBase:: |
public | function |
Sets the configuration for this plugin instance. Overrides ConfigurablePluginInterface:: |
|
EntityRoutingMapBase:: |
public | function |
Set the default form class Definition. Overrides EntityRoutingMapInterface:: |
|
EntityRoutingMapBase:: |
public | function |
Set the edit form class Definition. Overrides EntityRoutingMapInterface:: |
|
EntityRoutingMapBase:: |
public | function |
Set a mapping of operations for Generic plugin. Overrides EntityRoutingMapInterface:: |
1 |
EntityRoutingMapBase:: |
public | function |
Set the target entity type. Overrides EntityRoutingMapInterface:: |
|
EntityRoutingMapBase:: |
public | function |
Constructs display plugin. Overrides PluginBase:: |
|
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
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 |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
3 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
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. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. |