• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/integration/intranet/customsectionprovider.php
  • Класс: Bitrix\Crm\Integration\Intranet\CustomSectionProvider
  • Вызов: CustomSectionProvider::buildCustomSectionCounterId
static function buildCustomSectionCounterId(int $customSectionId): string
{
	// @fixMe remove the condition after Manager::buildCustomSectionCounterId will be released in the intranet
	if (method_exists(Manager::class, 'buildCustomSectionCounterId'))
	{
		return Manager::buildCustomSectionCounterId('crm', $customSectionId);
	}
	else
	{
		return 'crm_custom_section_' . $customSectionId;
	}
}