You are here

class JobUpload in TMGMT Extension Suite 8.3

Same name and namespace in other branches
  1. 8 src/Plugin/QueueWorker/JobUpload.php \Drupal\tmgmt_extension_suit\Plugin\QueueWorker\JobUpload
  2. 8.2 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

Expanded class hierarchy of JobUpload

1 file declares its use of JobUpload
QueueWorkerLockedTest.php in tests/src/Kernel/QueueWorkerLockedTest.php

File

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

Namespace

Drupal\tmgmt_extension_suit\Plugin\QueueWorker
View source
class JobUpload extends QueueWorkerLockedBase {

  /**
   * {@inheritdoc}
   */
  protected function doProcessItem(array $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

Namesort descending Modifiers Type Description Overrides
JobUpload::doProcessItem protected function Hook method to be implemented in child classes. Overrides QueueWorkerLockedBase::doProcessItem
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.
QueueWorkerLockedBase::$lock protected property Lock service.
QueueWorkerLockedBase::$logger protected property Logger.
QueueWorkerLockedBase::create public static function Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface::create
QueueWorkerLockedBase::processItem public function Works on a single queue item. Overrides QueueWorkerInterface::processItem
QueueWorkerLockedBase::__construct public function Constructs a new LocaleTranslation object. Overrides PluginBase::__construct