• Модуль: rest
  • Путь к файлу: ~/bitrix/modules/rest/lib/event.php
  • Класс: BitrixRestEventTable
  • Вызов: EventTable::bind
static function bind($eventName)
{
	$provider = new CRestProvider();
	$restDescription = $provider->getDescription();
	foreach($restDescription as $scope => $scopeDescription)
	{
		if(
			is_array($scopeDescription[CRestUtil::EVENTS])
			&& array_key_exists($eventName, $scopeDescription[CRestUtil::EVENTS])
		)
		{
			BitrixRestEventSender::bind(
				$scopeDescription[CRestUtil::EVENTS][$eventName][0],
				$scopeDescription[CRestUtil::EVENTS][$eventName][1]
			);

			break;
		}
	}
}