• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/integration/crm/timeline/bindings.php
  • Класс: BitrixTasksIntegrationCRMTimelineBindings
  • Вызов: Bindings::toArray
public function toArray(
	string $entityIdKey = 'ENTITY_ID',
	string $entityTypeIdKey = 'ENTITY_TYPE_ID',
	string $categoryId = 'CATEGORY_ID'
): array
{
	$identifiers = [];
	foreach ($this->identifiers as $identifier)
	{
		$identifiers[] = [
			$entityIdKey => $identifier->getEntityId(),
			$entityTypeIdKey => $identifier->getEntityTypeId(),
			$categoryId => $identifier->getCategoryId(),
		];
	}

	return $identifiers;
}