mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
a7e93c3099
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@77435 467b73ca-7a2a-4603-9d3b-597d59a354a9
63 lines
1.6 KiB
PHP
63 lines
1.6 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Sapphire configuration file
|
|
*
|
|
* Here you can make different settings for the Sapphire module (the core
|
|
* 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>
|
|
* Authenticator::register_authenticator('OpenIDAuthenticator');
|
|
* </code>
|
|
*
|
|
* @package sapphire
|
|
* @subpackage core
|
|
*/
|
|
|
|
// Default director
|
|
Director::addRules(10, array(
|
|
'Security//$Action/$ID/$OtherID' => 'Security',
|
|
//'Security/$Action/$ID' => 'Security',
|
|
'db//$Action' => 'DatabaseAdmin',
|
|
'$Controller//$Action/$ID/$OtherID' => '*',
|
|
'images' => 'Image_Uploader',
|
|
'' => 'RootURLController',
|
|
'api/v1/live' => 'VersionedRestfulServer',
|
|
'api/v1' => 'RestfulServer',
|
|
'soap/v1' => 'SOAPModelAccess',
|
|
'dev' => 'DevelopmentAdmin',
|
|
'interactive' => 'SapphireREPL',
|
|
));
|
|
|
|
Director::addRules(1, array(
|
|
'$URLSegment//$Action/$ID/$OtherID' => 'ModelAsController',
|
|
));
|
|
|
|
/**
|
|
* PHP 5.2 has a namespace conflict with our datetime class,
|
|
* for legacy support, we use this overload method.
|
|
* // ENFORCE STRONG_CREATE
|
|
*/
|
|
Object::useCustomClass('Datetime','SSDatetime',true);
|
|
|
|
|
|
/**
|
|
* The root directory of TinyMCE
|
|
*/
|
|
define('MCE_ROOT', 'jsparty/tiny_mce2/');
|
|
|
|
/**
|
|
* 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:
|
|
* {@link http://doc.silverstripe.com/doku.php?id=email_bouncehandler}
|
|
*/
|
|
define('EMAIL_BOUNCEHANDLER_KEY', '1aaaf8fb60ea253dbf6efa71baaacbb3');
|
|
|
|
?>
|