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
|
|
|
|
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
|
|
|
|
2014-01-02 16:59:34 +01:00
|
|
|
SS_Cache::set_cache_lifetime('GDBackend_Manipulations', null, 100);
|
|
|
|
|
2013-03-20 11:53:09 +01:00
|
|
|
// If you don't want to see deprecation errors for the new APIs, change this to 3.2.0-dev.
|
|
|
|
Deprecation::notification_version('3.2.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
|
2014-08-15 08:53:05 +02:00
|
|
|
require_once('admin/_config.php');
|