芝麻web文件管理V1.00
编辑当前文件:/home/p/r/i/prismawe/www/application/bootstrap.php
" */ if (isset($_SERVER['KOHANA_ENV'])) { Kohana::$environment = constant('Kohana::'.strtoupper($_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 * - 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( 'base_url' => '/', 'index_file' => FALSE, 'errors' => TRUE, )); /** * 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. */ 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 // 'image' => MODPATH.'image', // Image manipulation // 'orm' => MODPATH.'orm', // Object Relationship Mapping // 'unittest' => MODPATH.'unittest', // Unit testing // 'userguide' => MODPATH.'userguide', // User guide and API documentation )); /** * Set the routes. Each route must have a minimum of a name, a URI and a set of * defaults for the URI. */ Route::set('agence', 'agence') ->defaults(array('controller' => 'accueil','action' => 'agence')); Route::set('nos-realisations', 'nos-realisations') ->defaults(array('controller' => 'accueil','action' => 'realisations')); Route::set('nos-services', 'nos-services') ->defaults(array('controller' => 'accueil','action' => 'services')); Route::set('nos-partenaires', 'nos-partenaires') ->defaults(array('controller' => 'accueil','action' => 'partenaires')); Route::set('nous-contacter', 'nous-contacter') ->defaults(array('controller' => 'accueil','action' => 'contact')); Route::set('mentions-legales', 'mentions-legales') ->defaults(array('controller' => 'accueil','action' => 'mentions')); Route::set('404', '404') ->defaults(array('controller' => 'accueil','action' => 'erreur')); Route::set('default', '(
(/
(/
)))') ->defaults(array( 'controller' => 'accueil', 'ac ' => 'index', ));