113 lines
1.8 KiB
PHP
113 lines
1.8 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 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());
|
|
}
|
|
}
|