Kohana::PRODUCTION; /* * If true, the toolbar will default to the minimized position */ $config['minimized'] = FALSE; /* * Log toolbar data to FirePHP */ $config['firephp_enabled'] = TRUE; /* * Enable or disable specific panels */ $config['panels'] = array( 'benchmarks' => TRUE, 'database' => TRUE, 'vars' => TRUE, 'configs' => TRUE, // also depends on 'vars' values 'ajax' => TRUE, 'files' => TRUE, 'modules' => TRUE, 'routes' => TRUE, 'customs' => TRUE, ); /* * Secret Key */ $config['secret_key'] = FALSE; /** * CSS style **/ $config['styles'] = TRUE; /** * Exclude configs */ $config['skip_configs'] = array('database', 'encrypt'); /** * Disabled routes */ $config['excluded_routes'] = array( 'docs/media' // Userguide media route ); return $config;