Comment::getUserGenderSuffix

  1. Bitrix24 API (v. 23.675.0)
  2. ui
  3. Comment
  4. getUserGenderSuffix
  • Модуль: ui
  • Путь к файлу: ~/bitrix/modules/ui/lib/timeline/comment.php
  • Класс: BitrixUITimelineComment
  • Вызов: Comment::getUserGenderSuffix
public function getUserGenderSuffix(int $userId): string
{
	$userData = UserTable::getList([
		'select' => ['PERSONAL_GENDER'],
		'filter' => [
			'=ID' => $userId,
		],
		'limit' => 1,
	])->fetch();
	if($userData && !empty($userData['PERSONAL_GENDER']))
	{
		return '_'.$userData['PERSONAL_GENDER'];
	}

	return '';
}

Добавить комментарий