• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Service/Factory.php
  • Класс: Bitrix\Crm\Service\Factory
  • Вызов: Factory::getDependantTrackedObjects
protected function getDependantTrackedObjects(): array;

//region stages

/**
 * Returns ENTITY_ID value for b_crm_status table.
 * If stages are not supported, returns null
 *
 * @param int|null $categoryId - by default $categoryId from a default category is used. If categories are not
 * supported, this parameter is ignored
 *
 * @return string|null
 * @throws NotImplementedException
 */
public function getStagesEntityId(?int $categoryId = null): ?string
{
	if ($this->isStagesSupported())
	{
		throw new NotImplementedException(__METHOD__ . ' should be overwritten if stages are supported');
	}

	return null;
}