CancelTmgmtActionApproveForm.php in TMGMT Extension Suite 8
File
src/Form/CancelTmgmtActionApproveForm.php
View source
<?php
namespace Drupal\tmgmt_extension_suit\Form;
use Drupal\Component\Render\FormattableMarkup;
class CancelTmgmtActionApproveForm extends BaseTmgmtActionApproveForm {
protected $tempStorageName = 'tmgmt_extension_suit_tmgmt_job_operations_cancel';
public function getFormId() {
return 'tmgmt_extension_suit_cancel_multiple_confirm';
}
public function getConfirmText() {
return $this
->t('Cancel Jobs');
}
public function getQuestion() {
return $this
->t('Are you sure you want to cancel these jobs?');
}
public function getDescription() {
return $this
->t('Canceling can take some time, do not close the browser');
}
public static function processBatch($data, &$context) {
if (!isset($context['results']['errors'])) {
$context['results']['errors'] = [];
$context['results']['count'] = 0;
}
$entity_type_id = $data['entity_type'];
$entity_id = $data['entity_id'];
$job = \Drupal::entityTypeManager()
->getStorage($entity_type_id)
->loadMultiple([
$entity_id,
]);
$job = reset($job);
if (!$job) {
$context['results']['errors'][] = t('Entity @entity_type:@entity_id not found', [
'@entity_type' => $entity_type_id,
'@entity_id' => $entity_id,
]);
}
elseif (!$job
->abortTranslation()) {
$context['results']['count']++;
foreach ($job
->getMessagesSince() as $message) {
if ($message
->getType() == 'debug') {
continue;
}
if ($text = $message
->getMessage()) {
drupal_set_message($text, $message
->getType());
}
}
}
else {
$context['results']['errors'][] = new FormattableMarkup('Error aborting %name', [
'%name' => $job
->label(),
]);
return;
}
$context['message'] = new FormattableMarkup('Processed %name.', [
'%name' => $job
->label(),
]);
}
}