• Модуль: market
  • Путь к файлу: ~/bitrix/modules/market/lib/AppFavorites.php
  • Класс: BitrixMarketAppFavoritesTable
  • Вызов: AppFavoritesTable::getUserFavoritesCount
static function getUserFavoritesCount(): int
{
	global $USER;

	$dbFav = AppFavoritesTable::getList([
		'filter' => [
			'=USER_ID' => $USER->GetID(),
		],
		'count_total' => true,
	]);

	return (int)$dbFav->getCount();
}