CCrmTimelineCommentRestProxy::processEvent

  1. Bitrix24 API (v. 23.675.0)
  2. crm
  3. CCrmTimelineCommentRestProxy
  4. processEvent
  • Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/classes/general/restservice.php
  • Класс: \CCrmTimelineCommentRestProxy
  • Вызов: CCrmTimelineCommentRestProxy::processEvent
static function processEvent(array $arParams, array $arHandler)
{
	$eventName = $arHandler['EVENT_NAME'];
	switch(mb_strtolower($eventName))
	{
		case 'oncrmtimelinecommentadd':
		case 'oncrmtimelinecommentupdate':
		case 'oncrmtimelinecommentdelete':
			/* @var Main\Event $event */
			$event = $arParams[0];
			$ID = $event->getParameter('ID');
			break;
		default:
			throw new RestException("The Event \"{$eventName}\" is not supported in current context");
	}

	if($ID === '')
	{
		throw new RestException("Could not find entity ID in fields of event \"{$eventName}\"");
	}
	return array('FIELDS' => array('ID' => $ID));
}

Добавить комментарий