• Модуль: crmmobile
  • Путь к файлу: ~/bitrix/modules/crmmobile/lib/CustomSections/TabSorter.php
  • Класс: BitrixCrmMobileCustomSectionsTabSorter
  • Вызов: TabSorter::getCustomSectionControlPanelCode
static function getCustomSectionControlPanelCode(int $customSectionId): ?string
{
	$customSections = IntranetManager::getCustomSections();
	if (!empty($customSections))
	{
		foreach ($customSections as $section)
		{
			if ($section->getId() === $customSectionId)
			{
				return self::CUSTOM_SECTION_TABS_PREFIX . $section->getCode();
			}
		}
	}

	return null;
}