2012-01-13 11:58:06 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* MiniMVC
|
|
|
|
*
|
|
|
|
* Convention-based micro-framework for PHP
|
|
|
|
*
|
2012-04-26 16:26:50 -04:00
|
|
|
* @package miniMVC
|
2012-01-13 11:58:06 -05:00
|
|
|
* @author Timothy J. Warren
|
|
|
|
* @copyright Copyright (c) 2011 - 2012
|
|
|
|
* @link https://github.com/timw4mail/miniMVC
|
|
|
|
* @license http://philsturgeon.co.uk/code/dbad-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* File to configure routes
|
|
|
|
*
|
|
|
|
* Routes work on simple/regex matching.
|
|
|
|
*
|
|
|
|
* For a route mapping [http://example.com/]blog to the blog controller in the blog module:
|
|
|
|
* 'blog' => 'blog/blog/index'
|
|
|
|
*
|
|
|
|
* To route a special 404 page, set '404_route' to the "module/controller/method" you wish to use
|
|
|
|
*
|
2012-04-26 16:26:50 -04:00
|
|
|
* @package miniMVC
|
|
|
|
* @subpackage App
|
2012-01-13 11:58:06 -05:00
|
|
|
*/
|
2012-04-26 16:26:50 -04:00
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
2012-01-13 11:58:06 -05:00
|
|
|
|
2012-04-05 13:37:01 -04:00
|
|
|
return [
|
2012-01-13 11:58:06 -05:00
|
|
|
// Default Paths
|
|
|
|
'default_controller' => 'welcome',
|
|
|
|
'default_module' => 'welcome',
|
|
|
|
'404_route' => '',
|
2012-04-05 13:37:01 -04:00
|
|
|
];
|