• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/block.php
  • Класс: BitrixLandingBlock
  • Вызов: Block::getFavorites
static function getFavorites(?string $tplCode): array
{
	return parent::getList([
		'filter' => [
			'LID' => 0,
			'=DELETED' => 'N',
			'=TPL_CODE' => $tplCode
		],
		'order' => [
			'ID' => 'asc'
		]
	])->fetchAll();
}