CCrmCurrencyRestProxy::processEvent

  1. Bitrix24 API (v. 23.675.0)
  2. crm
  3. CCrmCurrencyRestProxy
  4. processEvent
  • Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/classes/general/restservice.php
  • Класс: \CCrmCurrencyRestProxy
  • Вызов: CCrmCurrencyRestProxy::processEvent
static function processEvent(array $arParams, array $arHandler)
{
	$eventName = $arHandler['EVENT_NAME'];
	switch(mb_strtolower($eventName))
	{
		case 'oncrmcurrencyadd':
		case 'oncrmcurrencyupdate':
		case 'oncrmcurrencydelete':
			{
				$ID = isset($arParams[0]) && is_string($arParams[0])? $arParams[0] : '';
			}
			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));
}

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