| 
<?php
/***
 * Name:    AlexSnet's framework MVC
 * About:    An MVC application framework for PHP
 * Copyright:    (C) 2008, Sudo me.
 * Author:    Alex Snet, me [at] alexsnet [dot] ru
 * Site:    http://alexsnet.ru/
 ***/
 
 // ------------------------------------------------------------------------
 
 /**
 * application.php
 *
 * application configuration
 *
 * @package        ASfMVC
 * @author        Alex Snet
 */
 
 /* name of default controller when none is given in the URL */
 $config['default_controller'] = 'default';
 
 /* name of PHP function that handles system errors */
 $config['error_handler_class'] = 'ASfMVC_ErrorHandler';
 
 
 ?>
 |