template = 'pages/sponsors.tpl'; $this->sponsorsModel = new SimpleModel("Sponsor", "sponsors.yaml"); } /* Display the index page. */ public function index() { $sponsors = $this->sponsorsModel->getAllData(false); return $this->renderPage( array( 'title' => $this->getConfigVars('sponsorsTitle'), 'content_title' => $this->getConfigVars('sponsorsContentTitle'), 'sponsors' => $sponsors, ) ); } }