* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * defaultActions module. * * @package symfony * @subpackage action * @author Fabien Potencier * @version SVN: $Id: actions.class.php 23810 2009-11-12 11:07:44Z Kris.Wallsmith $ */ class defaultActions extends sfActions { /** * Congratulations page for creating an application * */ public function executeIndex() { } /** * Congratulations page for creating a module * */ public function executeModule() { } /** * Error page for page not found (404) error * */ public function executeError404() { } /** * Warning page for restricted area - requires login * */ public function executeSecure() { } /** * Warning page for restricted area - requires credentials * */ public function executeLogin() { } /** * Module disabled in settings.yml * */ public function executeDisabled() { } }