template = 'pages/faq.tpl'; $this->faqModel = new FAQModel(); } /* Display the index page. */ public function index() { $contents = $this->faqModel->getFAQ(); $modified = $this->faqModel->getLastUpdated(); return $this->renderPage( array( 'title' => $this->getConfigVars('faqTitle'), 'content_title' => $this->getConfigVars('faqContentTitle'), 'contents' => $contents, 'modified' => $modified, ) ); } }