class BulkNodeExport in Node export 8
Same name in this branch
- 8 src/Form/BulkNodeExport.php \Drupal\node_Export\Form\BulkNodeExport
- 8 src/Plugin/Action/BulkNodeExport.php \Drupal\node_export\Plugin\Action\BulkNodeExport
Update Fields.
Plugin annotation
@Action(
id = "bulk_node_export",
label = "Node Export",
type = "node",
confirm_form_route_name = "node_export.bulk_export_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\node_export\Plugin\Action\BulkNodeExport implements ContainerFactoryPluginInterface
- class \Drupal\Core\Action\ActionBase implements ActionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of BulkNodeExport
File
- src/
Plugin/ Action/ BulkNodeExport.php, line 22
Namespace
Drupal\node_export\Plugin\ActionView source
class BulkNodeExport extends ActionBase 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('node_export_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);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
BulkNodeExport:: |
protected | property |
Configuration information passed into the plugin. Overrides PluginBase:: |
|
BulkNodeExport:: |
private | property | User. | |
BulkNodeExport:: |
protected | property |
The plugin implementation definition. Overrides PluginBase:: |
|
BulkNodeExport:: |
protected | property |
The plugin_id. Overrides PluginBase:: |
|
BulkNodeExport:: |
private | property | Session. | |
BulkNodeExport:: |
protected | property | The tempstore factory. | |
BulkNodeExport:: |
public | function |
Checks object access. Overrides ActionInterface:: |
|
BulkNodeExport:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
|
BulkNodeExport:: |
public | function |
Executes the plugin. Overrides ExecutableInterface:: |
|
BulkNodeExport:: |
public | function |
Executes the plugin for an array of objects. Overrides ActionBase:: |
|
BulkNodeExport:: |
public | function |
Constructs a BulkUpdateFields object. Overrides PluginBase:: |
|
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. |