You are here

protected function LingotekManagementRelatedEntitiesForm::getRecursionDepth in Lingotek Translation 3.4.x

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

Gets the recursion depth saved in temp storage.

Return value

int The recursion depth.

2 calls to LingotekManagementRelatedEntitiesForm::getRecursionDepth()
LingotekManagementRelatedEntitiesForm::buildForm in src/Form/LingotekManagementRelatedEntitiesForm.php
Form constructor.
LingotekManagementRelatedEntitiesForm::getFilteredEntities in src/Form/LingotekManagementRelatedEntitiesForm.php
Gets the entities that needs to be displayed based on the current filters.

File

src/Form/LingotekManagementRelatedEntitiesForm.php, line 292

Class

LingotekManagementRelatedEntitiesForm
Form for bulk management of related content.

Namespace

Drupal\lingotek\Form

Code

protected function getRecursionDepth() {
  $temp_store = $this->tempStoreFactory
    ->get('lingotek.management.recursion_depth');
  $depth = $temp_store
    ->get('depth');
  if ($depth === NULL) {
    $depth = 1;
  }
  return $depth;
}