You are here

protected function LingotekManagementForm::getTempStorageFilterKey in Lingotek Translation 3.4.x

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

Gets the key used for persisting filtering options in the temp storage.

Return value

string Temp storage identifier where filters are persisted.

Overrides LingotekManagementFormBase::getTempStorageFilterKey

2 calls to LingotekManagementForm::getTempStorageFilterKey()
LingotekManagementForm::getFilteredEntities in src/Form/LingotekManagementForm.php
Gets the entities that needs to be displayed based on the current filters.
LingotekManagementForm::getFilters in src/Form/LingotekManagementForm.php
Gets the filters for rendering.

File

src/Form/LingotekManagementForm.php, line 334

Class

LingotekManagementForm
Form for bulk management of content.

Namespace

Drupal\lingotek\Form

Code

protected function getTempStorageFilterKey() {
  return 'lingotek.management.filter.' . $this->entityTypeId;
}