• Модуль: intranet
  • Путь к файлу: ~/bitrix/modules/intranet/classes/general/notify.php
  • Класс: CIntranetNotify
  • Вызов: CIntranetNotify::GetSiteName
static function GetSiteName(): string
{
	$result = Option::get('main', 'site_name');

	if ($result === '')
	{
		$result = Loc::getMessage('I_NEW_USER_SITE_NAME_DEFAULT');
	}
	return $result;
}