class PurgeUsersQueueWorker in Auto Purge Users 8.2
Same name and namespace in other branches
- 8.3 src/Plugin/QueueWorker/PurgeUsersQueueWorker.php \Drupal\purge_users\Plugin\QueueWorker\PurgeUsersQueueWorker
- 8 src/Plugin/QueueWorker/PurgeUsersQueueWorker.php \Drupal\purge_users\Plugin\QueueWorker\PurgeUsersQueueWorker
Processes cron queue.
Plugin annotation
@QueueWorker(
id = "purge_users",
title = @Translation("Purge Users Tasks Worker: Purge Users"),
cron = {"time" = 15}
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Queue\QueueWorkerBase implements QueueWorkerInterface
- class \Drupal\purge_users\Plugin\QueueWorker\PurgeUsersQueueWorker
- class \Drupal\Core\Queue\QueueWorkerBase implements QueueWorkerInterface
Expanded class hierarchy of PurgeUsersQueueWorker
File
- src/
Plugin/ QueueWorker/ PurgeUsersQueueWorker.php, line 17
Namespace
Drupal\purge_users\Plugin\QueueWorkerView source
class PurgeUsersQueueWorker extends QueueWorkerBase {
/**
* {@inheritdoc}
*/
public function processItem($user_id) {
$account = User::load($user_id);
$config = \Drupal::config('purge_users.settings');
$method = $config
->get('purge_user_cancel_method') != 'user_cancel_site_policy' ? $config
->get('purge_user_cancel_method') : \Drupal::config('user.settings')
->get('cancel_method');
$userManagement = \Drupal::service('purge_users.user_management');
$userManagement
->purgeUser($account, $method);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
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. | |
PluginBase:: |
public | function | Constructs a \Drupal\Component\Plugin\PluginBase object. | 92 |
PurgeUsersQueueWorker:: |
public | function |
Works on a single queue item. Overrides QueueWorkerInterface:: |