• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/timeline/pusher.php
  • Класс: Bitrix\Crm\Timeline\Pusher
  • Вызов: Pusher::preparePushParamsByCommand
protected function preparePushParamsByCommand(int $targetEntityTypeId, int $targetEntityId, string $command): array
{
	if ($this->isCommandShouldBeSentToItemDetailsPage($command))
	{
		return [
			'TAG' => $this->prepareEntityPushTag($targetEntityTypeId, $targetEntityId),
		];
	}

	return [
		'ID' => $targetEntityId,
		'TAG' => $this->prepareEntityPushTag($targetEntityTypeId),
	];
}