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

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

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

	return Loc::getMessage('SONET_LIVEFEED_INTRANET_NEW_USER_PINNED_DESCRIPTION', [
		'#USER_NAME#' => $sourceFields['FULL_NAME']
	]);
}