CCrmComponentHelper::getMenuActiveItemId

  1. Bitrix24 API (v. 23.675.0)
  2. crm
  3. CCrmComponentHelper
  4. getMenuActiveItemId
  • Модуль: 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;
}

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