• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/domain.php
  • Класс: BitrixLandingDomain
  • Вызов: Domain::getBitrix24Postfix
static function getBitrix24Postfix(string $type): string
{
	$zone = Manager::getZone();
	$postfix = ($type === 'STORE') ? '.bitrix24.shop' : '.bitrix24.site';
	$type = mb_strtoupper($type);

	// local domain
	if (in_array($zone, ['ru', 'by']))
	{
		$postfix = '.';
		$postfix .= ($type === 'STORE') ? 'bitrix24shop' : 'bitrix24site';
		$postfix .= '.' . $zone;
	}

	return $postfix;
}