• Модуль: messageservice
  • Путь к файлу: ~/bitrix/modules/messageservice/lib/Restriction/RestrictionManager.php
  • Класс: BitrixMessageServiceRestrictionRestrictionManager
  • Вызов: RestrictionManager::checkRestrictions
private function checkRestrictions(): bool
{
	foreach($this->restrictions as $restriction)
	{
		if (!$restriction->isCanSend())
		{
			$this->notPassedRestriction = $restriction;
			return false;
		}
	}

	return true;
}