You are here

class PurgeUsersQueueWorker in Auto Purge Users 8.2

Same name and namespace in other branches
  1. 8.3 src/Plugin/QueueWorker/PurgeUsersQueueWorker.php \Drupal\purge_users\Plugin\QueueWorker\PurgeUsersQueueWorker
  2. 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

Expanded class hierarchy of PurgeUsersQueueWorker

File

src/Plugin/QueueWorker/PurgeUsersQueueWorker.php, line 17

Namespace

Drupal\purge_users\Plugin\QueueWorker
View 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

Namesort descending Modifiers Type Description Overrides
PluginBase::$configuration protected property Configuration information passed into the plugin. 1
PluginBase::$pluginDefinition protected property The plugin implementation definition. 1
PluginBase::$pluginId protected property The plugin_id.
PluginBase::DERIVATIVE_SEPARATOR constant A string which is used to separate base plugin IDs from the derivative ID.
PluginBase::getBaseId public function Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface::getBaseId
PluginBase::getDerivativeId public function Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface::getDerivativeId
PluginBase::getPluginDefinition public function Gets the definition of the plugin implementation. Overrides PluginInspectionInterface::getPluginDefinition 3
PluginBase::getPluginId public function Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface::getPluginId
PluginBase::isConfigurable public function Determines if the plugin is configurable.
PluginBase::__construct public function Constructs a \Drupal\Component\Plugin\PluginBase object. 92
PurgeUsersQueueWorker::processItem public function Works on a single queue item. Overrides QueueWorkerInterface::processItem