class MassPasswordChange in Mass Password Change 8
Same name in this branch
- 8 tests/src/Functional/MassPasswordChange.php \Drupal\Tests\mass_password_change\Functional\MassPasswordChange
- 8 src/Plugin/Action/MassPasswordChange.php \Drupal\mass_password_change\Plugin\Action\MassPasswordChange
Provides a Change Password action.
Plugin annotation
@Action(
id = "mass_password_change_action",
label = @Translation("Change password"),
type = "user",
confirm_form_route_name = "mass_password_change.password_change_confirm",
)
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\mass_password_change\Plugin\Action\MassPasswordChange implements ContainerFactoryPluginInterface
- class \Drupal\Core\Action\ActionBase implements ActionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of MassPasswordChange
File
- src/
Plugin/ Action/ MassPasswordChange.php, line 21
Namespace
Drupal\mass_password_change\Plugin\ActionView source
class MassPasswordChange extends ActionBase implements ContainerFactoryPluginInterface {
/**
* Private TempStore Factory.
*
* @var \Drupal\Core\TempStore\PrivateTempStoreFactory
*/
protected $tempStoreFactory;
/**
* MassPasswordChangeconstructor.
*
* @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 $tempStoreFactory
* Private TempStore Factory.
*/
public function __construct(array $configuration, $plugin_id, $plugin_definition, PrivateTempStoreFactory $tempStoreFactory) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->tempStoreFactory = $tempStoreFactory;
}
/**
* {@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'));
}
/**
* {@inheritdoc}
*/
public function access($user, AccountInterface $account = NULL, $return_as_object = FALSE) {
/** @var \Drupal\user\UserInterface $user */
// Prevent uid=1 user or disallow current user.
return $user
->id() != 1 && $user
->id() != $account
->id();
}
/**
* {@inheritdoc}
*/
public function executeMultiple(array $accounts) {
/** @var \Drupal\user\UserInterface[] $accounts */
$this->tempStoreFactory
->get('mass_password_change')
->set('password_change', $accounts);
}
/**
* {@inheritdoc}
*/
public function execute($account = NULL) {
/** @var \Drupal\user\UserInterface $account */
$this
->executeMultiple([
$account,
]);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
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 | |
MassPasswordChange:: |
protected | property | Private TempStore Factory. | |
MassPasswordChange:: |
public | function |
Checks object access. Overrides ActionInterface:: |
|
MassPasswordChange:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
|
MassPasswordChange:: |
public | function |
Executes the plugin. Overrides ExecutableInterface:: |
|
MassPasswordChange:: |
public | function |
Executes the plugin for an array of objects. Overrides ActionBase:: |
|
MassPasswordChange:: |
public | function |
MassPasswordChangeconstructor. Overrides PluginBase:: |
|
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
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. |