**/ public function executeFilm() { } /** * Executes index action * */ public function executeIndex() { $this->forward('default', 'module'); } /** * Executes legal action * * @return void * @author Benjamin Ramey **/ public function executeLegal() { } /** * Move announcement page * * @return void * @author Benjamin Ramey **/ public function executeMoveannouncement() { } /** * References action * * @return void * @author Benjamin Ramey **/ public function executeReferences() { } /** * Translations page * * @return void * @author Benjamin Ramey **/ public function executeTranslations() { } /** * Subsidies page * * @return void * @author Benjamin Ramey **/ public function executeSubsidies() { } /** * Links page * * @return void * @author Benjamin Ramey **/ public function executeLinks() { } /** * Contact page * * @return void * @author Benjamin Ramey **/ public function executeContact() { } /** * Events page * * @return void * @author Benjamin Ramey **/ public function executeEvents() { $this->events = EventPeer::getActive(); foreach($this->events as $e) $e->setCulture($this->getUser()->getCulture()); } }