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