• Модуль: seo
  • Путь к файлу: ~/bitrix/modules/seo/lib/webhook/service.php
  • Класс: BitrixSeoWebHookService
  • Вызов: Service::answer
static function answer(array $answer)
{
	/** @var CMain $APPLICATION */
	global $APPLICATION;
	$APPLICATION->restartBuffer();
	header('Content-Type:application/json; charset=UTF-8');

	echo Json::encode($answer);

	CMain::finalActions();
	exit;
}