Changeset 1250 for trunk/application/config/config.php
- Timestamp:
- 11/23/2007 05:10:56 PM (12 months ago)
- Files:
-
- 1 modified
-
trunk/application/config/config.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/application/config/config.php
r1230 r1250 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * File: config.php 4 * This configuration file is unique to every application. 3 * Site-specific application configuration is done here. This configuration file 4 * does not extend any other configuration file. All of the items here are prefixed 5 * with "core", eg: core.index_page would fetch the index_page variable from the 6 * configuration array. 5 7 * 6 8 * Options: … … 9 11 * index_page - name of the front controller, can be removed with URL rewriting 10 12 * url_suffix - an extension that will be added to all generated URLs 13 * enable_utf8 - enable or disable internal utf8 support 14 * global_xss_filtering - enable or disable XSS attack filtering on all user input 11 15 * allow_config_set - enable or disable setting of Config items 12 * global_xss_filtering - enable or disable XSS attack filtering on all user input13 16 * extension_prefix - filename prefix for library extensions 14 * include_paths - extra Kohana resource paths, see <Kohana.find_file>17 * include_paths - "module" support, additional resource paths that will be searched 15 18 * autoload - libraries and models to be loaded with the controller 16 19 */ … … 21 24 'index_page' => 'index.php', 22 25 'url_suffix' => '', 23 ' allow_config_set'=> TRUE,26 'enable_utf8' => TRUE, 24 27 'global_xss_filtering' => FALSE, 28 'allow_config_set' => FALSE, 25 29 'extension_prefix' => 'MY_', 26 30 'include_paths' => array 27 31 ( 28 // 'modules/auth', 29 // 'modules/ikeafans', 30 // 'modules/user_guide', 31 // 'modules/orm', 32 'modules/kodoc', 33 // 'modules/mixnotify' 32 // To enable the demo module, uncomment the following line 33 // 'modules/demo', 34 34 ), 35 35 'autoload' => array … … 37 37 'libraries' => '', 38 38 'models' => '' 39 ) 39 ), 40 40 );
