class JobCheckStatus in TMGMT Extension Suite 8
Same name and namespace in other branches
- 8.2 src/Plugin/QueueWorker/JobCheckStatus.php \Drupal\tmgmt_extension_suit\Plugin\QueueWorker\JobCheckStatus
Executes interface translation queue tasks.
Plugin annotation
@QueueWorker(
id = "tmgmt_extension_suit_check_status",
title = @Translation("Job check status"),
cron = {"time" = 30}
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Queue\QueueWorkerBase implements QueueWorkerInterface
- class \Drupal\tmgmt_extension_suit\Plugin\QueueWorker\JobCheckStatus implements ContainerFactoryPluginInterface
- class \Drupal\Core\Queue\QueueWorkerBase implements QueueWorkerInterface
Expanded class hierarchy of JobCheckStatus
File
- src/
Plugin/ QueueWorker/ JobCheckStatus.php, line 21
Namespace
Drupal\tmgmt_extension_suit\Plugin\QueueWorkerView source
class JobCheckStatus extends QueueWorkerBase implements ContainerFactoryPluginInterface {
/**
* @var \Drupal\tmgmt_extension_suit\Utils\UniqueQueueItem
*/
protected $uniqueQueueItem;
/**
* @var LoggerInterface
*/
protected $logger;
/**
* @var \Drupal\Core\Config\Config
*/
protected $config;
/**
* Constructs a new LocaleTranslation 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 array $plugin_definition
* The plugin implementation definition.
* @param \Drupal\tmgmt_extension_suit\Utils\UniqueQueueItem $uniqueQueueItem
* @param \Psr\Log\LoggerInterface $logger
* @internal param \Drupal\Core\Queue\QueueInterface $queue The queue object.* The queue object.
*/
public function __construct(array $configuration, $plugin_id, array $plugin_definition, UniqueQueueItem $uniqueQueueItem, LoggerInterface $logger) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->uniqueQueueItem = $uniqueQueueItem;
$this->logger = $logger;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('tmgmt_extension_suit.utils.queue_unique_item'), $container
->get('logger.channel.tmgmt_extension_suit'));
}
/**
* {@inheritdoc}
*/
public function processItem($data) {
$id = $data['id'];
try {
$job = entity_load('tmgmt_job', $id);
if (!$job || !$job
->hasTranslator()) {
return;
}
$plugin = $job
->getTranslator()
->getPlugin();
if ($plugin instanceof ExtendedTranslatorPluginInterface && $plugin
->isReadyForDownload($job)) {
$this->uniqueQueueItem
->addItem('tmgmt_extension_suit_download', $data);
}
} catch (\Exception $e) {
$this->logger
->error($e
->getMessage());
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
JobCheckStatus:: |
protected | property | ||
JobCheckStatus:: |
protected | property | ||
JobCheckStatus:: |
protected | property | ||
JobCheckStatus:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
|
JobCheckStatus:: |
public | function |
Works on a single queue item. Overrides QueueWorkerInterface:: |
|
JobCheckStatus:: |
public | function |
Constructs a new LocaleTranslation object. Overrides PluginBase:: |
|
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. |