template = 'pages/games.tpl'; $this->gameDownloadsModel = new GameDownloadsModel(); } /* Display the index page. */ public function index() { $downloads = $this->gameDownloadsModel->getAllDownloads(); $sections = $this->gameDownloadsModel->getAllSections(); return $this->renderPage( array( 'title' => $this->getConfigVars('gamesTitle'), 'content_title' => $this->getConfigVars('gamesContentTitle'), 'downloads' => $downloads, 'sections' => $sections, 'release_tools' => RELEASE_TOOLS, 'release_debian' => RELEASE_DEBIAN, ) ); } }