Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php defined('SYSPATH') or die('No direct script access.');
- //-- Environment setup --------------------------------------------------------
- /**
- * Set the default time zone.
- *
- * @see http://kohanaframework.org/guide/using.configuration
- * @see http://php.net/timezones
- */
- date_default_timezone_set('America/Chicago');
- /**
- * Set the default locale.
- *
- * @see http://kohanaframework.org/guide/using.configuration
- * @see http://php.net/setlocale
- */
- setlocale(LC_ALL, 'en_US.utf-8');
- /**
- * Enable the Kohana auto-loader.
- *
- * @see http://kohanaframework.org/guide/using.autoloading
- * @see http://php.net/spl_autoload_register
- */
- spl_autoload_register(array('Kohana', 'auto_load'));
- /**
- * Enable the Kohana auto-loader for unserialization.
- *
- * @see http://php.net/spl_autoload_call
- * @see http://php.net/manual/var.configuration.php#unserialize-callback-func
- */
- ini_set('unserialize_callback_func', 'spl_autoload_call');
- //-- Configuration and initialization -----------------------------------------
- /**
- * Set Kohana::$environment if $_ENV['KOHANA_ENV'] has been supplied.
- *
- */
- if (isset($_ENV['KOHANA_ENV']))
- {
- Kohana::$environment = $_ENV['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
- * - boolean errors enable or disable error handling TRUE
- * - boolean profile enable or disable internal profiling TRUE
- * - boolean caching enable or disable internal caching FALSE
- */
- Kohana::init(array(
- 'index_file' => FALSE,
- 'base_url' => '/',
- ));
- /**
- * Attach the file write to logging. Multiple writers are supported.
- */
- Kohana::$log->attach(new Kohana_Log_File(APPPATH.'logs'));
- /**
- * Attach a file reader to config. Multiple readers are supported.
- */
- Kohana::$config->attach(new Kohana_Config_File);
- /**
- * Enable modules. Modules are referenced by a relative or absolute path.
- */
- Kohana::modules(array(
- 'auth' => MODPATH.'auth', // Basic authentication
- 'cache' => MODPATH.'cache', // Caching with multiple backends
- // 'codebench' => MODPATH.'codebench', // Benchmarking tool
- 'database' => MODPATH.'database', // Database access
- 'email' => MODPATH.'email', // Swiftmailer.org
- // 'image' => MODPATH.'image', // Image manipulation
- 'orm' => MODPATH.'orm', // Object Relationship Mapping
- // 'oauth' => MODPATH.'oauth', // OAuth authentication
- 'pagination' => MODPATH.'pagination', // Paging of results
- // 'unittest' => MODPATH.'unittest', // Unit testing
- 'captcha' => MODPATH.'captcha', // Captcha class ported from Kohana 2x https://github.com/kolanos/kohana-captcha
- 'userguide' => MODPATH.'userguide', // User guide and API documentation
- ));
- Route::set('admin', 'admin(/<controller>(/<action>(/<id>)))')
- ->defaults(array(
- 'directory' => 'admin',
- 'controller' => 'textad',
- 'action' => 'index',
- ));
- Route::set('admin', 'admin(/<controller>(/<action>(/<id>)))')
- ->defaults(array(
- 'directory' => 'admin',
- 'controller' => 'publisher',
- 'action' => 'index',
- ));
- Route::set('admin', 'admin(/<controller>(/<action>(/<id>(/<publisher_id>(/adplacement_id)))))')
- ->defaults(array(
- 'directory' => 'admin',
- 'controller' => 'publisher',
- 'action' => 'index',
- 'publisher_id' => NULL,
- 'adplacement_id' => NULL,
- ));
- /*
- Route::set('member', '(<controller>(/<action>(/<id>(/<email>(/<verification>)))))')
- ->defaults(array(
- 'controller' => 'member',
- 'action' => 'verify',
- 'email' => NULL,
- 'verification' => NULL,
- ));
- */
- Route::set('verify', 'member/verify(/<email>(/<verification>))', array('email'=>'[a-zA-Z0-9\.\_@]+','verification'=>'[a-zA-Z0-9]+'))
- ->defaults(array(
- 'controller'=>'member',
- 'action'=>'verify' ,
- 'email' => NULL ,
- 'verification' => NULL,
- ));
- // STATIC CONTENT
- Route::set('pages','<action>')
- ->defaults(array(
- 'controller' => 'welcome',
- 'action' => 'index',
- ));
- /**
- * 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',
- ));
- if ( ! defined('SUPPRESS_REQUEST'))
- {
- /**
- * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO'].
- * If no source is specified, the URI will be automatically detected.
- */
- echo Request::instance()
- ->execute()
- ->send_headers()
- ->response;
- }
Add Comment
Please, Sign In to add comment