• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/import/personnameformatter.php
  • Класс: BitrixTasksImportPersonNameFormatter
  • Вызов: PersonNameFormatter::getAllDescriptions
static function getAllDescriptions()
{
	if(!self::$allDescriptions)
	{
		IncludeModuleLangFile(__FILE__);

		self::$allDescriptions = array(
			self::Dflt => Loc::getMessage('TASKS_PERSON_NAME_FORMAT_DEFAULT'),
			self::HonorificLast => Loc::getMessage('TASKS_PERSON_NAME_FORMAT_HONORIFIC_LAST'),
			self::FirstLast => Loc::getMessage('TASKS_PERSON_NAME_FORMAT_FIRST_LAST'),
			self::FirstSecondLast => Loc::getMessage('TASKS_PERSON_NAME_FORMAT_FIRST_SECOND_LAST'),
			self::LastFirst => Loc::getMessage('TASKS_PERSON_NAME_FORMAT_LAST_FIRST'),
			self::LastFirstSecond => Loc::getMessage('TASKS_PERSON_NAME_FORMAT_LAST_FIRST_SECOND')
		);
	}
	return self::$allDescriptions;
}