• Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/config/feature.php
  • Класс: BitrixCatalogConfigFeature
  • Вызов: Feature::getHelpLink
static function getHelpLink(string $featureId): ?array
{
	if (!self::isBitrix24())
	{
		return null;
	}
	if (!isset(self::$bitrix24helpCodes[$featureId]))
	{
		return null;
	}
	self::$helpCodesCounter++;
	return [
		'TYPE' => 'ONCLICK',
		'LINK' => 'top.BX.UI.InfoHelper.show(''.self::$bitrix24helpCodes[$featureId].'');',
		'FEATURE_CODE' => self::$bitrix24helpCodes[$featureId],
	];
}