• Модуль: mail
  • Путь к файлу: ~/bitrix/modules/mail/lib/internals/entity/mailboxdirectory.php
  • Класс: BitrixMailInternalsEntityMailboxDirectory
  • Вызов: MailboxDirectory::getFormattedName
public function getFormattedName()
{
	if ($this->getLevel() === 1)
	{
		return $this->getName();
	}

	$path = explode($this->getDelimiter(), $this->getPath());

	return join(' / ', $path);
}