2 namespace Eywa\CMS\Presenters;
4 use Eywa\CMS\Navigation;
9 * @title Přehled podstránek
11 class Overview extends Base
14 public function renderDefault($path = '')
16 $this->template->list = $this->repository->getPages($this->getParam('path'), $this->orderBy(), NULL, $this->filter());
21 protected function orderBy()
23 return array('ctime', 'desc');
28 protected function filter()