• Модуль: socialnetwork
  • Путь к файлу: ~/bitrix/modules/socialnetwork/lib/livefeed/taskstask.php
  • Класс: BitrixSocialnetworkLivefeedTasksTask
  • Вызов: TasksTask::getPinnedDescription
public function getPinnedDescription(): string
{
	$result = '';

	if (empty($this->sourceFields))
	{
		$this->initSourceFields();
	}

	$task = $this->getSourceFields();
	if (empty($task))
	{
		return $result;
	}

	return (string)Loc::getMessage('SONET_LIVEFEED_TASKS_TASK_PINNED_DESCRIPTION', [
		'#RESPONSIBLE#' => CUser::formatName(
			CSite::getNameFormat(),
			[
				'NAME' => $task['RESPONSIBLE_NAME'],
				'LAST_NAME' => $task['RESPONSIBLE_LAST_NAME'],
				'SECOND_NAME' => $task['RESPONSIBLE_SECOND_NAME']
			],
			true,
			false
		)
	]);
}