• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/notify.php
  • Класс: BitrixSaleNotify
  • Вызов: Notify::hasSentEvent
static function hasSentEvent($code, $event)
{
	if (!array_key_exists($code, static::$sentEventList))
	{
		return false;
	}

	if (in_array($event, static::$sentEventList[$code]))
	{
		return true;
	}

	return false;
}