<?php defined('SYSPATH') or
die('No direct script access.');
// -- Environment setup --------------------------------------------------------
// Load the core Kohana class
require SYSPATH.'classes/Kohana/Core'.EXT;
if (is_file(APPPATH
.'classes/Kohana'.EXT
)) {
// Application extends the core
require APPPATH.'classes/Kohana'.EXT;
}
else
{
// Load empty core extension
require SYSPATH.'classes/Kohana'.EXT;
}
/**
* Set the default time zone.
*
* @link <a href="http://kohanaframework.org/guide/using.configuration" target="_blank">http://kohanaframework.org/guide/using.configuration</a>
* @link <a href="http://www.php.net/manual/timezones" target="_blank">http://www.php.net/manual/timezones</a>
*/
date_default_timezone_set('America/Chicago');
/**
* Set the default locale.
*
* @link <a href="http://kohanaframework.org/guide/using.configuration" target="_blank">http://kohanaframework.org/guide/using.configuration</a>
* @link <a href="http://www.php.net/manual/function.setlocale" target="_blank">http://www.php.net/manual/function.setlocale</a>
*/
/**
* Enable the Kohana auto-loader.
*
* @link <a href="http://kohanaframework.org/guide/using.autoloading" target="_blank">http://kohanaframework.org/guide/using.autoloading</a>
* @link <a href="http://www.php.net/manual/function.spl-autoload-register" target="_blank">http://www.php.net/manual/function.spl-autoload-register</a>
*/
spl_autoload_register
(array('Kohana', 'auto_load'));
/**
* Optionally, you can enable a compatibility auto-loader for use with
* older modules that have not been updated for PSR-0.
*
* It is recommended to not enable this unless absolutely necessary.
*/
//spl_autoload_register(array('Kohana', 'auto_load_lowercase'));
/**
* Enable the Kohana auto-loader for unserialization.
*
* @link <a href="http://www.php.net/manual/function.spl-autoload-call" target="_blank">http://www.php.net/manual/function.spl-autoload-call</a>
* @link <a href="http://www.php.net/manual/var.configuration#unserialize-callback-func" target="_blank">http://www.php.net/manual/var.configuratio...e-callback-func</a>
*/
ini_set('unserialize_callback_func', 'spl_autoload_call');
// -- Configuration and initialization -----------------------------------------
/**
* Set the default language
*/
I18n::lang('en-us');
/**
* Set Kohana::$environment if a 'KOHANA_ENV' environment variable has been supplied.
*
* Note: If you supply an invalid environment name, a PHP warning will be thrown
* saying "Couldn't find constant Kohana::<INVALID_ENV_NAME>"
*/
if (isset($_SERVER['KOHANA_ENV'])) {
}
/**
* Initialize Kohana, setting the default options.
*
* The following options are available:
*
* - string base_url path, and optionally domain, of your application NULL
* - string index_file name of your index file, usually "index.php" index.php
* - string charset internal character set used for input and output utf-8
* - string cache_dir set the internal cache directory APPPATH/cache
* - integer cache_life lifetime, in seconds, of items cached 60
* - boolean errors enable or disable error handling TRUE
* - boolean profile enable or disable internal profiling TRUE
* - boolean caching enable or disable internal caching FALSE
* - boolean expose set the X-Powered-By header FALSE
*/
'base_url' => '/',
));
/**
* Attach the file write to logging. Multiple writers are supported.
*/
Kohana::$log->attach(new Log_File(APPPATH.'logs'));
/**
* Attach a file reader to config. Multiple readers are supported.
*/
Kohana::$config->attach(new Config_File);
/**
* Enable modules. Modules are referenced by a relative or absolute path.
*/
//'auth' => MODPATH.'auth', // Basic authentication
// 'cache' => MODPATH.'cache', // Caching with multiple backends
// 'codebench' => MODPATH.'codebench', // Benchmarking tool
'database' => MODPATH.'database', // Database access
// 'image' => MODPATH.'image', // Image manipulation
// 'minion' => MODPATH.'minion', // CLI Tasks
'orm' => MODPATH.'orm', // Object Relationship Mapping
// 'unittest' => MODPATH.'unittest', // Unit testing
// 'userguide' => MODPATH.'userguide', // User guide and API documentation
'simpleauth' => MODPATH .'simple_auth'
));
/**
* Set the routes. Each route must have a minimum of a name, a URI and a set of
* defaults for the URI.
*/
Route :: set( 'default', '(<controller>(/<action>(/<id>)))')
-> defaults( array( 'controller' => 'welcome', 'action' => 'index' ) );