• Модуль: xdimport
  • Путь к файлу: ~/bitrix/modules/xdimport/lib/integration/socialnetwork/logcomment.php
  • Класс: BitrixXDImportIntegrationSocialnetworkLogComment
  • Вызов: LogComment::processUserList
static function processUserList(array $userIdList = [])
{
	$userIdList = array_map(
		static function ($userId) {
			return (int)$userId;
		},
		$userIdList
	);
	$userIdList = array_filter(
		$userIdList,
		static function ($userId) {
			return ($userId > 0);
		}
	);
	return array_unique($userIdList);
}