tmgmt_extension_suit-8.x-3.4/src/Plugin/Action/CancelJobAction.php
src/Plugin/Action/CancelJobAction.php
<?php
namespace Drupal\tmgmt_extension_suit\Plugin\Action;
/**
* Translate entity.
*
* @Action(
* id = "tmgmt_extension_suit_cancel_job_action",
* label = @Translation("Cancel Job"),
* type = "tmgmt_job",
* confirm_form_route_name = "tmgmt_extension_suit.cancel_approve_action"
* )
*/
class CancelJobAction extends BaseJobAction {
/**
* Returns temp storage name.
*
* @inheritdoc
*/
protected function getTempStoreName($entity_type = '') {
return 'tmgmt_extension_suit_' . $entity_type . '_operations_cancel';
}
}
