41 lines
655 B
PHP
41 lines
655 B
PHP
<?php
|
|
|
|
/**
|
|
* howdowedoit actions.
|
|
*
|
|
* @package pae
|
|
* @subpackage howdowedoit
|
|
* @author Your name here
|
|
* @version SVN: $Id: actions.class.php 2692 2006-11-15 21:03:55Z fabien $
|
|
*/
|
|
class howdowedoitActions extends sfActions
|
|
{
|
|
/**
|
|
* Executes index action
|
|
*
|
|
*/
|
|
public function executeIndex()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Course structure page
|
|
*
|
|
* @return void
|
|
* @author Benjamin Ramey <ben.ramey@gmail.com>
|
|
**/
|
|
public function executeCoursestructure()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Methodology action
|
|
*
|
|
* @return void
|
|
* @author Benjamin Ramey <ben.ramey@gmail.com>
|
|
**/
|
|
public function executeMethodology()
|
|
{
|
|
}
|
|
}
|