• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/sharing/helper.php
  • Класс: BitrixCalendarSharingHelper
  • Вызов: Helper::getPersonFullNameLoc
static function getPersonFullNameLoc(string $name, string $lastName): string
{
	$culture = MainApplication::getInstance()->getContext()->getCulture();
	$nameFormat = is_null($culture) ? '#NAME# #LAST_NAME#' : $culture->getNameFormat();

	return trim(str_replace(
		['#NAME#', '#LAST_NAME#'],
		[$name, $lastName],
		$nameFormat,
	));
}