You are here

public function ClearJobItemsDataTmgmtActionApproveForm::getQuestion in TMGMT Extension Suite 8

Same name and namespace in other branches
  1. 8.3 src/Form/ClearJobItemsDataTmgmtActionApproveForm.php \Drupal\tmgmt_extension_suit\Form\ClearJobItemsDataTmgmtActionApproveForm::getQuestion()
  2. 8.2 src/Form/ClearJobItemsDataTmgmtActionApproveForm.php \Drupal\tmgmt_extension_suit\Form\ClearJobItemsDataTmgmtActionApproveForm::getQuestion()

Returns the question to ask the user.

Return value

\Drupal\Core\StringTranslation\TranslatableMarkup The form question. The page title will be set to this value.

Overrides BaseTmgmtActionApproveForm::getQuestion

File

src/Form/ClearJobItemsDataTmgmtActionApproveForm.php, line 37

Class

ClearJobItemsDataTmgmtActionApproveForm
Provides a confirmation form for sending multiple content entities.

Namespace

Drupal\tmgmt_extension_suit\Form

Code

public function getQuestion() {
  return $this
    ->t('Are you sure you want to clear JobItem cache (data property) from selected jobs?');
}