Ejemplo n.º 1
0
 public function action_project()
 {
     $slug = $this->request->param('id');
     $pageData = Arr::get($this->contentModel->findPortfolioProject(null, null, $slug), 0, []);
     $view = 'page';
     $content = $this->contentModel->getContent($view, $pageData)->set('projectGalleryImgs', $this->contentModel->findProjectImgs(Arr::get($pageData, 'id'), null, null, 1));
     $footer = '';
     $this->template->set('content', $content)->set('footer', $footer);
     $this->response->body($this->template);
 }