• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/V2/Link/Favorite/FavoriteCollection.php
  • Класс: BitrixImV2LinkFavoriteFavoriteCollection
  • Вызов: FavoriteCollection::getPopupData
public function getPopupData(array $excludedList = []): PopupData
{
	$messages = $this->getMessageCollection()->fillAllForRest();
	$data = new PopupData([
		new EntityUserUserPopupItem(),
		new EntityFileFilePopupItem(),
		new ReminderPopupItem($messages->getReminders())
	], $excludedList);
	$excludedList[] = ReminderPopupItem::class;

	return $data->merge(parent::getPopupData($excludedList));
}