You are here

public static function WebformLogicHelper::stopRecursionTracking in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/Utility/WebformLogicHelper.php \Drupal\webform\Utility\WebformLogicHelper::stopRecursionTracking()

Stop recursion tracking.

Parameters

string $value: A string value typically a token.

Return value

bool FALSE when recursion is detected.

3 calls to WebformLogicHelper::stopRecursionTracking()
WebformTwigExtension::webformToken in src/Twig/WebformTwigExtension.php
Replace tokens in text.
_webform_token_get_submission_value in ./webform.tokens.inc
Get webform submission token value.
_webform_token_get_submission_values in ./webform.tokens.inc
Get webform submission values.

File

src/Utility/WebformLogicHelper.php, line 69

Class

WebformLogicHelper
Provides helper to handle logic related issues.

Namespace

Drupal\webform\Utility

Code

public static function stopRecursionTracking($value) {
  return self::trackRecursion($value, FALSE);
}