• Модуль: socialnetwork
  • Путь к файлу: ~/bitrix/modules/socialnetwork/lib/integration/ui/entityselector/metauserprovider.php
  • Класс: BitrixSocialnetworkIntegrationUIEntitySelectorMetaUserProvider
  • Вызов: MetaUserProvider::getSelectedItems
public function getSelectedItems(array $ids): array
{
	$options = [];
	foreach (self::SUPPORTED_IDS as $id)
	{
		$options[$id] = [
			'allowView' => true,
			'deselectable' => self::canViewAllUsers(),
		];
	}

	return self::getMetaUsers($ids, array_merge($options, $this->getOptions()));
}