1
0
mirror of synced 2024-12-15 23:56:02 +03:00
doctrine2/website/apps/frontend/modules/main/actions/actions.class.php
2007-09-06 17:20:49 +00:00

39 lines
661 B
PHP

<?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()
{
$blogPostTable = Doctrine_Manager::getInstance()->getTable('BlogPost');
$this->latestBlogPosts = $blogPostTable->retrieveLatest(5);
}
public function executeAbout()
{
}
public function executeDownload()
{
}
public function executeTrac()
{
$this->redirect('http://phpdoctrine.net/trac');
}
}