You are here

protected function LingotekJobManagementConfigForm::getFilterTempStore in Lingotek Translation 3.4.x

Same name and namespace in other branches
  1. 8.2 src/Form/LingotekJobManagementConfigForm.php \Drupal\lingotek\Form\LingotekJobManagementConfigForm::getFilterTempStore()
  2. 4.0.x src/Form/LingotekJobManagementConfigForm.php \Drupal\lingotek\Form\LingotekJobManagementConfigForm::getFilterTempStore()
  3. 3.0.x src/Form/LingotekJobManagementConfigForm.php \Drupal\lingotek\Form\LingotekJobManagementConfigForm::getFilterTempStore()
  4. 3.1.x src/Form/LingotekJobManagementConfigForm.php \Drupal\lingotek\Form\LingotekJobManagementConfigForm::getFilterTempStore()
  5. 3.2.x src/Form/LingotekJobManagementConfigForm.php \Drupal\lingotek\Form\LingotekJobManagementConfigForm::getFilterTempStore()
  6. 3.3.x src/Form/LingotekJobManagementConfigForm.php \Drupal\lingotek\Form\LingotekJobManagementConfigForm::getFilterTempStore()
  7. 3.5.x src/Form/LingotekJobManagementConfigForm.php \Drupal\lingotek\Form\LingotekJobManagementConfigForm::getFilterTempStore()
  8. 3.6.x src/Form/LingotekJobManagementConfigForm.php \Drupal\lingotek\Form\LingotekJobManagementConfigForm::getFilterTempStore()
  9. 3.7.x src/Form/LingotekJobManagementConfigForm.php \Drupal\lingotek\Form\LingotekJobManagementConfigForm::getFilterTempStore()
  10. 3.8.x src/Form/LingotekJobManagementConfigForm.php \Drupal\lingotek\Form\LingotekJobManagementConfigForm::getFilterTempStore()

Overrides LingotekConfigManagementForm::getFilterTempStore

1 call to LingotekJobManagementConfigForm::getFilterTempStore()
LingotekJobManagementConfigForm::buildForm in src/Form/LingotekJobManagementConfigForm.php
Form constructor.

File

src/Form/LingotekJobManagementConfigForm.php, line 40

Class

LingotekJobManagementConfigForm
Form for bulk management of job filtered content.

Namespace

Drupal\lingotek\Form

Code

protected function getFilterTempStore() {
  $key = new FormattableMarkup('lingotek.job_config_management_@job.filter', [
    '@job' => $this->jobId,
  ]);
  return $this->tempStoreFactory
    ->get($key);
}