81 lines
1.3 KiB
PHP
81 lines
1.3 KiB
PHP
<?php
|
|
|
|
/**
|
|
* whatdowedo actions.
|
|
*
|
|
* @package pae
|
|
* @subpackage whatdowedo
|
|
* @author Your name here
|
|
* @version SVN: $Id: actions.class.php 2692 2006-11-15 21:03:55Z fabien $
|
|
*/
|
|
class whatdowedoActions extends sfActions
|
|
{
|
|
/**
|
|
* Executes index action
|
|
*
|
|
*/
|
|
public function executeIndex()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Business english page
|
|
*
|
|
* @return void
|
|
* @author Benjamin Ramey <ben.ramey@gmail.com>
|
|
**/
|
|
public function executeBusinessenglish()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* General english page
|
|
*
|
|
* @return void
|
|
* @author Benjamin Ramey <ben.ramey@gmail.com>
|
|
**/
|
|
public function executeGeneralenglish()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Financial english page
|
|
*
|
|
* @return void
|
|
* @author Benjamin Ramey <ben.ramey@gmail.com>
|
|
**/
|
|
public function executeFinancialenglish()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* International legal english page
|
|
*
|
|
* @return void
|
|
* @author Benjamin Ramey <ben.ramey@gmail.com>
|
|
**/
|
|
public function executeInternationallegalenglish()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Professional english page
|
|
*
|
|
* @return void
|
|
* @author Benjamin Ramey <ben.ramey@gmail.com>
|
|
**/
|
|
public function executeProfessionalenglish()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Business english examples page
|
|
*
|
|
* @return void
|
|
* @author Benjamin Ramey <ben.ramey@gmail.com>
|
|
**/
|
|
public function executeBusinessenglishexamples()
|
|
{
|
|
}
|
|
}
|