Files
2017-03-02 21:57:21 -06:00

67 lines
1.2 KiB
PHP

<?php
/**
* default actions.
*
* @package pae
* @subpackage default
* @author Your name here
* @version SVN: $Id: actions.class.php 2692 2006-11-15 21:03:55Z fabien $
*/
class defaultActions extends sfActions
{
/**
* Executes index action
*
*/
public function executeIndex()
{
$this->panoramaImage = sfConfig::get("app_home_panorama_image");
}
/**
* Executes error404 action
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeError404()
{
}
/**
* Executes login action
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeLogin()
{
}
/**
* Executes secure action
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeSecure()
{
}
/**
* Executes disabled action
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeDisabled()
{
}
/**
* Executes unavailable action
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeUnavailable()
{
}
}