template = 'pages/documentation.tpl'; $this->documentationModel = new SimpleModel("Document", "documentation.yaml"); } /* Display the index page. */ public function index() { $documents = $this->documentationModel->getAllData(false); return $this->renderPage( array( 'title' => $this->getConfigVars('documentationTitle'), 'content_title' => $this->getConfigVars('documentationContentTitle'), 'documents' => $documents, ) ); } }