2012-06-11 17:08:59 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// This is the controller that will be hit by default
|
|
|
|
$default_controller = "welcome";
|
|
|
|
|
|
|
|
// Global Model Includes
|
|
|
|
// These are Models that we ALWAYS want loaded
|
|
|
|
$global_models = array();
|
|
|
|
|
|
|
|
// Global Library Includes
|
|
|
|
// These are Libraries that we ALWAYS want loaded
|
|
|
|
$global_libraries = array();
|
|
|
|
|
2012-06-11 17:30:26 +00:00
|
|
|
// This tells the system to throw away the first URI token
|
|
|
|
// For example, if the system is kept in:
|
|
|
|
// http://mysite.com/folder1/
|
|
|
|
// Then setting this should be set to 1
|
2012-06-11 21:08:08 +00:00
|
|
|
$starting_token = 0;
|