tmgmt_globalsight-8.x-1.x-dev/tmgmt_globalsight.module
tmgmt_globalsight.module
<?php
/**
* Implements hook_cron().
*/
function tmgmt_globalsight_cron() {
/** @var \Drupal\tmgmt_globalsight\Plugin\tmgmt\Translator\GlobalSightTranslator $plugin */
$plugin = \Drupal::service('plugin.manager.tmgmt.translator')->createInstance('globalsight');
foreach ($plugin->getUntranslatedJobRecords() as $record) {
$plugin->pollGlobalsight($record);
}
}