• Модуль: crmmobile
  • Путь к файлу: ~/bitrix/modules/crmmobile/lib/CustomSections/TabSorter.php
  • Класс: BitrixCrmMobileCustomSectionsTabSorter
  • Вызов: TabSorter::getCustomSectionTabsOrder
static function getCustomSectionTabsOrder(?CustomSection $customSection): ?array
{
	if (isset($customSection))
	{
		$customSectionCode = self::getCustomSectionControlPanelCode($customSection->getId());
		if (isset($customSectionCode))
		{
			$userOptionsRaw = CUserOptions::GetOption(
				self::CUSTOM_SECTION_TABS_USEROPTIONS_CATEGORY,
				$customSectionCode
			);
			$result = self::prepareUserOptions($userOptionsRaw, self::CUSTOM_SECTION_TABS_USEROPTIONS_KEY);

			return $result;
		}
	}

	return null;
}