1
0
mirror of synced 2024-12-16 16:16:04 +03:00
doctrine2/website/apps/frontend/modules/main/actions/actions.class.php

41 lines
630 B
PHP
Raw Normal View History

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 executeManual()
{
2007-09-06 00:34:44 +04:00
$this->redirect('http://doctrine.pengus.net/doctrine/manual/new');
}
2007-09-01 03:41:48 +04:00
public function executeAbout()
{
}
public function executeDownload()
{
}
public function executeTrac()
{
$this->redirect('http://phpdoctrine.net/trac');
}
}