• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/integration/im/notification.php
  • Класс: BitrixTasksIntegrationIMNotification
  • Вызов: Notification::getGenderMessage
public function getGenderMessage(string $postfix = ''): string
{
	$message = Loc::getMessage(
		$this->locKey . '_' . $this->getSender()->getGender() . $postfix,
		null,
		$this->getRecepient()->getLang()
	);

	return ((string)$message === '')
		? $this->getNeuturalMessage($this->locKey . $postfix, $this->getRecepient()->getLang())
		: $message;
}