setFeed(); echo (View::render(['portial' => $portial], 'index_tpl.php')); } public function actionNotFound() { echo (View::render([], '404.php')); } public function actionPortial() { // $this->limit = isset($_GET['limit']) ? $_GET['limit'] : Null; // $this->offset = isset($_GET['offset']) ? $_GET['offset'] : Null; $result = MusicModel::getData(); // var_dump($result); $builder = new MusicPageBuilder($result); $page = $builder->setFeed(); echo $page; } }