class ConvertBundlesActionBase in Convert Bundles 8
Update Bundles.
Plugin annotation
@Action(
id = "convert_bundles_action_base",
label = "Convert Entity Bundles",
type = "entity",
confirm_form_route_name = "convert_bundles.form"
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
- class \Drupal\Core\Action\ActionBase implements ActionInterface
- class \Drupal\Core\Action\ConfigurableActionBase implements ConfigurableInterface, ConfigurablePluginInterface, DependentPluginInterface, PluginFormInterface
- class \Drupal\convert_bundles\Plugin\Action\ConvertBundlesActionBase implements ContainerFactoryPluginInterface
- class \Drupal\Core\Action\ConfigurableActionBase implements ConfigurableInterface, ConfigurablePluginInterface, DependentPluginInterface, PluginFormInterface
- class \Drupal\Core\Action\ActionBase implements ActionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of ConvertBundlesActionBase
File
- src/
Plugin/ Action/ ConvertBundlesActionBase.php, line 23
Namespace
Drupal\convert_bundles\Plugin\ActionView source
class ConvertBundlesActionBase extends ConfigurableActionBase implements ContainerFactoryPluginInterface {
/**
* The plugin_id.
*
* @var pluginId
*/
protected $pluginId;
/**
* The plugin implementation definition.
*
* @var pluginDefinition
*/
protected $pluginDefinition;
/**
* Configuration information passed into the plugin.
*
* When using an interface like
* \Drupal\Component\Plugin\ConfigurablePluginInterface, this is where the
* configuration should be stored.
*
* Plugin configuration is optional, so plugin implementations must provide
* their own setters and getters.
*
* @var configuration
*/
protected $configuration;
/**
* The tempstore factory.
*
* @var tempStoreFactory
*/
protected $tempStoreFactory;
/**
* Session.
*
* @var sessionManager
*/
private $sessionManager;
/**
* User.
*
* @var currentUser
*/
private $currentUser;
/**
* Constructs a BulkUpdateFields object.
*
* @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.
* @param \Drupal\Core\TempStore\PrivateTempStoreFactory $temp_store_factory
* The tempstore factory.
* @param \Drupal\Core\Session\SessionManagerInterface $session_manager
* The session.
* @param \Drupal\Core\Session\AccountInterface $current_user
* The session.
*/
public function __construct(array $configuration, $plugin_id, $plugin_definition, PrivateTempStoreFactory $temp_store_factory, SessionManagerInterface $session_manager, AccountInterface $current_user) {
$this->configuration = $configuration;
$this->pluginId = $plugin_id;
$this->pluginDefinition = $plugin_definition;
$this->tempStoreFactory = $temp_store_factory;
$this->sessionManager = $session_manager;
$this->currentUser = $current_user;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('tempstore.private'), $container
->get('session_manager'), $container
->get('current_user'));
}
/**
* {@inheritdoc}
*/
public function executeMultiple(array $entities) {
$ids = [];
foreach ($entities as $entity) {
$ids[$entity
->id()] = $entity;
}
$this->tempStoreFactory
->get('convert_bundles_ids')
->set($this->currentUser
->id(), $ids);
}
/**
* {@inheritdoc}
*/
public function execute(ContentEntityInterface $entity = NULL) {
$this
->executeMultiple([
$entity,
]);
}
/**
* {@inheritdoc}
*/
public function access($object, AccountInterface $account = NULL, $return_as_object = FALSE) {
return $object
->access('update', $account, $return_as_object);
}
/**
* {@inheritdoc}
*/
public function defaultConfiguration() {
return [];
}
/**
* {@inheritdoc}
*/
public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
return $form;
}
/**
* {@inheritdoc}
*/
public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ConfigurableActionBase:: |
public | function |
Calculates dependencies for the configured plugin. Overrides DependentPluginInterface:: |
1 |
ConfigurableActionBase:: |
public | function |
Gets this plugin's configuration. Overrides ConfigurableInterface:: |
|
ConfigurableActionBase:: |
public | function |
Sets the configuration for this plugin instance. Overrides ConfigurableInterface:: |
|
ConfigurableActionBase:: |
public | function |
Form validation handler. Overrides PluginFormInterface:: |
2 |
ConvertBundlesActionBase:: |
protected | property |
Configuration information passed into the plugin. Overrides PluginBase:: |
|
ConvertBundlesActionBase:: |
private | property | User. | |
ConvertBundlesActionBase:: |
protected | property |
The plugin implementation definition. Overrides PluginBase:: |
|
ConvertBundlesActionBase:: |
protected | property |
The plugin_id. Overrides PluginBase:: |
|
ConvertBundlesActionBase:: |
private | property | Session. | |
ConvertBundlesActionBase:: |
protected | property | The tempstore factory. | |
ConvertBundlesActionBase:: |
public | function |
Checks object access. Overrides ActionInterface:: |
|
ConvertBundlesActionBase:: |
public | function |
Form constructor. Overrides PluginFormInterface:: |
|
ConvertBundlesActionBase:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
|
ConvertBundlesActionBase:: |
public | function |
Gets default configuration for this plugin. Overrides ConfigurableActionBase:: |
|
ConvertBundlesActionBase:: |
public | function |
Executes the plugin. Overrides ExecutableInterface:: |
|
ConvertBundlesActionBase:: |
public | function |
Executes the plugin for an array of objects. Overrides ActionBase:: |
|
ConvertBundlesActionBase:: |
public | function |
Form submission handler. Overrides PluginFormInterface:: |
|
ConvertBundlesActionBase:: |
public | function |
Constructs a BulkUpdateFields object. Overrides ConfigurableActionBase:: |
|
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
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. |