• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/security/controller/quote.php
  • Класс: Bitrix\Crm\Security\Controller\Quote
  • Вызов: Quote::tryParseProgressStep
public function tryParseProgressStep($attribute, &$value): bool
{
	if (preg_match(self::$progressRegex, $attribute, $m) !== 1)
	{
		return false;
	}

	$value = isset($m[1]) ? $m[1] : '';

	return true;
}