Files
pae.co.at/trunk/proactiveenglish/apps/frontend/modules/info/actions/actions.class.php
2017-03-02 21:57:21 -06:00

124 lines
2.0 KiB
PHP

<?php
/**
* info actions.
*
* @package pae
* @subpackage info
* @author Your name here
* @version SVN: $Id: actions.class.php 2692 2006-11-15 21:03:55Z fabien $
*/
class infoActions extends sfActions
{
/**
* Executes the film action
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeFilm()
{
}
/**
* Executes news action
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeNews()
{
}
/**
* Executes index action
*
*/
public function executeIndex()
{
$this->forward('default', 'module');
}
/**
* Executes legal action
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeLegal()
{
}
/**
* Move announcement page
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeMoveannouncement()
{
}
/**
* References action
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeReferences()
{
}
/**
* Translations page
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeTranslations()
{
}
/**
* Subsidies page
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeSubsidies()
{
}
/**
* Links page
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeLinks()
{
}
/**
* Contact page
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeContact()
{
}
/**
* Events page
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeEvents()
{
$this->events = EventPeer::getActive();
foreach($this->events as $e)
$e->setCulture($this->getUser()->getCulture());
}
}