• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/hook/page/settings.php
  • Класс: BitrixLandingHookPageSettings
  • Вызов: Settings::getDefaultValues
static function getDefaultValues(): array
{
	static $defValues = [];

	if (!$defValues)
	{
		$defValues = self::$defValues;
		if (
			!$defValues['CURRENCY_ID']
			&& Loader::includeModule('currency')
		)
		{
			$defValues['CURRENCY_ID'] = CurrencyManager::getBaseCurrency();
		}
	}

	return $defValues;
}