• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/classes/general/crm_component_helper.php
  • Класс: \CCrmComponentHelper
  • Вызов: CCrmComponentHelper::getMenuActiveItemId
static function getMenuActiveItemId(string $entityName, $categoryId): string
{
	$categoryId = isset($categoryId) ? (int)$categoryId : 0;

	return $categoryId > 0
		? "{$entityName}_C{$categoryId}"
		: $entityName;
}