• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/restriction/webformresultsrestriction.php
  • Класс: Bitrix\Crm\Restriction\WebFormResultsRestriction
  • Вызов: WebFormResultsRestriction::isLimitReached
public function isLimitReached(): bool
{
	if ($this->hasPermission())
	{
		return false;
	}
	if ($this->isLimitReached === null)
	{
		$this->isLimitReached = $this->processLimit();
	}

	return $this->isLimitReached;
}