• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/ical/builder/attendee.php
  • Класс: Bitrix\Calendar\ICal\Builder\Attendee
  • Вызов: Attendee::getFullName
public function getFullName(): ?string
{
	if ($this->name || $this->lastName)
	{
		return trim("{$this->name} {$this->lastName}");
	}

	return $this->email;
}