class JobUpload in TMGMT Extension Suite 8.2
Same name and namespace in other branches
- 8.3 src/Plugin/QueueWorker/JobUpload.php \Drupal\tmgmt_extension_suit\Plugin\QueueWorker\JobUpload
- 8 src/Plugin/QueueWorker/JobUpload.php \Drupal\tmgmt_extension_suit\Plugin\QueueWorker\JobUpload
Executes interface translation queue tasks.
Plugin annotation
@QueueWorker(
id = "tmgmt_extension_suit_upload",
title = @Translation("Job translation upload"),
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\JobUpload implements ContainerFactoryPluginInterface
- class \Drupal\Core\Queue\QueueWorkerBase implements QueueWorkerInterface
Expanded class hierarchy of JobUpload
File
- src/
Plugin/ QueueWorker/ JobUpload.php, line 21
Namespace
Drupal\tmgmt_extension_suit\Plugin\QueueWorkerView source
class JobUpload extends QueueWorkerBase implements ContainerFactoryPluginInterface {
/**
* @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 \Psr\Log\LoggerInterface $logger
*/
public function __construct(array $configuration, $plugin_id, array $plugin_definition, LoggerInterface $logger) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$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('logger.channel.tmgmt_extension_suit'));
}
/**
* {@inheritdoc}
*/
public function processItem($data) {
$id = $data['id'];
try {
$job = Job::load($id);
if (empty($job)) {
$this->logger
->error(t('Requesting translation for a job :job_id is failed: non-existent job. This job has been deleted from admin UI but queue item is still in the queue.', [
':job_id' => $id,
])
->render());
return;
}
$plugin = $job
->getTranslator()
->getPlugin();
if ($plugin instanceof ExtendedTranslatorPluginInterface) {
$plugin
->requestTranslationExtended($job, $data);
}
} catch (\Exception $e) {
$this->logger
->error($e
->getMessage());
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
JobUpload:: |
protected | property | ||
JobUpload:: |
protected | property | ||
JobUpload:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
|
JobUpload:: |
public | function |
Works on a single queue item. Overrides QueueWorkerInterface:: |
|
JobUpload:: |
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. |