• Модуль: socialnetwork
  • Путь к файлу: ~/bitrix/modules/socialnetwork/lib/helper/mention.php
  • Класс: BitrixSocialnetworkHelperMention
  • Вызов: Mention::getEntitiesList
static function getEntitiesList(string $text = '', string $pattern = ''): array
{
	$result = [];
	preg_match_all($pattern, $text, $matches);

	if (empty($matches))
	{
		return $result;
	}

	foreach($matches[1] as $key => $userId)
	{
		$result[] = [
			'ID' => (int)$userId,
			'NAME' => $matches[2][$key],
		];
	}

	return $result;
}