2007-07-19 12:40:28 +02:00
|
|
|
<?php
|
|
|
|
|
2007-09-15 02:08:23 +02:00
|
|
|
/**
|
2012-03-24 04:38:57 +01:00
|
|
|
* Framework configuration file
|
2007-09-15 02:08:23 +02:00
|
|
|
*
|
2012-03-24 04:38:57 +01:00
|
|
|
* Here you can make different settings for the Framework module (the core
|
2007-09-15 02:08:23 +02:00
|
|
|
* module).
|
|
|
|
*
|
|
|
|
* For example you can register the authentication methods you wish to use
|
|
|
|
* on your site, e.g. to register the OpenID authentication method type
|
|
|
|
*
|
|
|
|
* <code>
|
2007-09-16 02:44:30 +02:00
|
|
|
* Authenticator::register_authenticator('OpenIDAuthenticator');
|
2007-09-15 02:08:23 +02:00
|
|
|
* </code>
|
2008-02-25 03:10:37 +01:00
|
|
|
*
|
2012-04-12 08:02:46 +02:00
|
|
|
* @package framework
|
2008-02-25 03:10:37 +01:00
|
|
|
* @subpackage core
|
2007-09-15 02:08:23 +02:00
|
|
|
*/
|
|
|
|
|
2008-04-05 05:43:58 +02:00
|
|
|
/**
|
API CHANGE: Renamed conflicting classes to have an "SS_" namespace, and renamed existing "SS" namespace to "SS_". The affected classes are: HTTPRequest, HTTPResponse, Query, Database, SSBacktrace, SSCli, SSDatetime, SSDatetimeTest, SSLog, SSLogTest, SSLogEmailWriter, SSLogErrorEmailFormatter, SSLogErrorFileFormatter, SSLogFileWriter and SSZendLog.
MINOR: Replaced usage of renamed classes with the new namespaced name.
From: Andrew Short <andrewjshort@gmail.com>
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@90075 467b73ca-7a2a-4603-9d3b-597d59a354a9
2009-10-26 04:06:31 +01:00
|
|
|
* PHP 5.2 introduced a conflict with the Datetime field type, which was renamed to SSDatetime. This was later renamed
|
|
|
|
* to SS_Datetime to be consistent with other namespaced classes.
|
|
|
|
*
|
|
|
|
* Overload both of these to support legacy code.
|
2008-04-05 05:43:58 +02:00
|
|
|
*/
|
API CHANGE: Renamed conflicting classes to have an "SS_" namespace, and renamed existing "SS" namespace to "SS_". The affected classes are: HTTPRequest, HTTPResponse, Query, Database, SSBacktrace, SSCli, SSDatetime, SSDatetimeTest, SSLog, SSLogTest, SSLogEmailWriter, SSLogErrorEmailFormatter, SSLogErrorFileFormatter, SSLogFileWriter and SSZendLog.
MINOR: Replaced usage of renamed classes with the new namespaced name.
From: Andrew Short <andrewjshort@gmail.com>
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@90075 467b73ca-7a2a-4603-9d3b-597d59a354a9
2009-10-26 04:06:31 +01:00
|
|
|
Object::useCustomClass('SSDatetime', 'SS_Datetime', true);
|
|
|
|
Object::useCustomClass('Datetime', 'SS_Datetime', true);
|
2008-04-05 05:43:58 +02:00
|
|
|
|
2007-09-16 02:44:30 +02:00
|
|
|
/**
|
|
|
|
* The root directory of TinyMCE
|
|
|
|
*/
|
2012-03-24 04:38:57 +01:00
|
|
|
define('MCE_ROOT', FRAMEWORK_DIR . '/thirdparty/tinymce/');
|
2007-09-15 04:12:52 +02:00
|
|
|
|
2012-03-01 09:13:42 +01:00
|
|
|
ShortcodeParser::get('default')->register('file_link', array('File', 'link_shortcode_handler'));
|
2012-05-22 06:45:36 +02:00
|
|
|
ShortcodeParser::get('default')->register('embed', array('Oembed', 'handle_shortcode'));
|
2012-03-01 09:13:42 +01:00
|
|
|
|
2007-09-16 02:35:09 +02:00
|
|
|
/**
|
2007-09-16 02:44:30 +02:00
|
|
|
* The secret key that needs to be sent along with pings to /Email_BounceHandler
|
|
|
|
*
|
|
|
|
* Change this to something different for increase security (you can
|
|
|
|
* override it in mysite/_config.php to ease upgrades).
|
|
|
|
* For more information see:
|
2009-11-06 04:35:07 +01:00
|
|
|
* {@link http://doc.silverstripe.org/doku.php?id=email_bouncehandler}
|
2007-09-16 02:35:09 +02:00
|
|
|
*/
|
2010-10-19 02:46:46 +02:00
|
|
|
if(!defined('EMAIL_BOUNCEHANDLER_KEY')) {
|
|
|
|
define('EMAIL_BOUNCEHANDLER_KEY', '1aaaf8fb60ea253dbf6efa71baaacbb3');
|
|
|
|
}
|
2007-09-15 23:51:37 +02:00
|
|
|
|
2010-10-15 04:49:06 +02:00
|
|
|
// Zend_Cache temp directory setting
|
2010-10-19 00:43:11 +02:00
|
|
|
$_ENV['TMPDIR'] = TEMP_FOLDER; // for *nix
|
|
|
|
$_ENV['TMP'] = TEMP_FOLDER; // for Windows
|
2011-03-29 02:58:00 +02:00
|
|
|
|
|
|
|
$aggregatecachedir = TEMP_FOLDER . DIRECTORY_SEPARATOR . 'aggregate_cache';
|
|
|
|
if (!is_dir($aggregatecachedir)) mkdir($aggregatecachedir);
|
|
|
|
|
|
|
|
SS_Cache::add_backend('aggregatestore', 'File', array('cache_dir' => $aggregatecachedir));
|
|
|
|
SS_Cache::pick_backend('aggregatestore', 'aggregate', 1000);
|
2011-03-23 11:07:07 +01:00
|
|
|
|
2011-10-29 06:27:22 +02:00
|
|
|
// If you don't want to see deprecation errors for the new APIs, change this to 3.0.0-dev.
|
|
|
|
Deprecation::notification_version('3.0.0');
|
2011-10-27 23:45:12 +02:00
|
|
|
|
2011-03-23 11:07:07 +01:00
|
|
|
// TODO Remove once new ManifestBuilder with submodule support is in place
|
2012-03-01 09:13:42 +01:00
|
|
|
require_once('admin/_config.php');
|