• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/rest/controllers/viewedgroup/base.php
  • Класс: BitrixTasksRestControllersViewedGroupBase
  • Вызов: Base::listAction
public function listAction($select = [], $filter = [], $order = [], PageNavigation $pageNavigation = null)
{
	$filter['TYPE_ID'] = static::VIEWED_TYPE;
	$order = empty($order) ? ['GROUP_ID' => 'ASC'] : $order;

	return new Page(static::LIST,
		$this->getList($select, $filter, $order, $pageNavigation),
		$this->count($filter)
	);
}