class ConvertBundlesLocalTask in Convert Bundles 8
Provides local task definitions for all entity bundles.
Hierarchy
- class \Drupal\Component\Plugin\Derivative\DeriverBase implements DeriverInterface
- class \Drupal\convert_bundles\Plugin\Derivative\ConvertBundlesLocalTask implements ContainerDeriverInterface uses StringTranslationTrait
Expanded class hierarchy of ConvertBundlesLocalTask
See also
\Drupal\convert_bundles\Controller\EntityDebugController
\Drupal\convert_bundles\Routing\RouteSubscriber
1 string reference to 'ConvertBundlesLocalTask'
File
- src/
Plugin/ Derivative/ ConvertBundlesLocalTask.php, line 18
Namespace
Drupal\convert_bundles\Plugin\DerivativeView source
class ConvertBundlesLocalTask extends DeriverBase implements ContainerDeriverInterface {
use StringTranslationTrait;
/**
* The entity manager.
*
* @var \Drupal\Core\Entity\EntityTypeManagerInterface
*/
protected $entityTypeManager;
/**
* Creates an ConvertBundlesLocalTask object.
*
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
* The entity manager.
* @param \Drupal\Core\StringTranslation\TranslationInterface $string_translation
* The translation manager.
*/
public function __construct(EntityTypeManagerInterface $entity_type_manager, TranslationInterface $string_translation) {
$this->entityTypeManager = $entity_type_manager;
$this->stringTranslation = $string_translation;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, $base_plugin_id) {
return new static($container
->get('entity_type.manager'), $container
->get('string_translation'));
}
/**
* {@inheritdoc}
*/
public function getDerivativeDefinitions($base_plugin_definition) {
$this->derivatives = [];
foreach ($this->entityTypeManager
->getDefinitions() as $entity_type_id => $entity_type) {
$this->derivatives["entity.{$entity_type_id}.convert_bundles"] = [
'route_name' => "entity.{$entity_type_id}.convert_bundles",
'title' => $this
->t('Convert Bundle'),
'base_route' => "entity.{$entity_type_id}.canonical",
'weight' => 100,
];
}
foreach ($this->derivatives as &$entry) {
$entry += $base_plugin_definition;
}
return $this->derivatives;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ConvertBundlesLocalTask:: |
protected | property | The entity manager. | |
ConvertBundlesLocalTask:: |
public static | function |
Creates a new class instance. Overrides ContainerDeriverInterface:: |
|
ConvertBundlesLocalTask:: |
public | function |
Gets the definition of all derivatives of a base plugin. Overrides DeriverBase:: |
|
ConvertBundlesLocalTask:: |
public | function | Creates an ConvertBundlesLocalTask object. | |
DeriverBase:: |
protected | property | List of derivative definitions. | 1 |
DeriverBase:: |
public | function |
Gets the definition of a derivative plugin. Overrides DeriverInterface:: |
|
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. |