2007-09-01 03:41:48 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* main actions.
|
|
|
|
*
|
|
|
|
* @package doctrine_website
|
|
|
|
* @subpackage main
|
|
|
|
* @author Your name here
|
|
|
|
* @version SVN: $Id: actions.class.php 2692 2006-11-15 21:03:55Z fabien $
|
|
|
|
*/
|
|
|
|
class mainActions extends sfActions
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Executes index action
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public function executeIndex()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public function executeAbout()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public function executeDownload()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public function executeTrac()
|
|
|
|
{
|
|
|
|
$this->redirect('http://phpdoctrine.net/trac');
|
|
|
|
}
|
2007-09-12 02:00:52 +04:00
|
|
|
|
|
|
|
public function executeTrac_register()
|
|
|
|
{
|
|
|
|
$this->redirect('http://phpdoctrine.net/trac/register');
|
|
|
|
}
|
2007-09-01 03:41:48 +04:00
|
|
|
}
|