2007-07-19 12:40:28 +02:00
|
|
|
<?php
|
|
|
|
|
2007-09-15 02:08:23 +02:00
|
|
|
/**
|
|
|
|
* 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>
|
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
|
|
|
*
|
|
|
|
* @package sapphire
|
|
|
|
* @subpackage core
|
2007-09-15 02:08:23 +02:00
|
|
|
*/
|
|
|
|
|
2008-08-09 05:19:54 +02:00
|
|
|
// Default director
|
|
|
|
Director::addRules(10, array(
|
2008-08-09 05:29:30 +02:00
|
|
|
'Security//$Action/$ID/$OtherID' => 'Security',
|
2008-08-09 05:19:54 +02:00
|
|
|
//'Security/$Action/$ID' => 'Security',
|
2008-08-11 05:56:09 +02:00
|
|
|
'db//$Action' => 'DatabaseAdmin',
|
|
|
|
'$Controller//$Action/$ID/$OtherID' => '*',
|
2008-08-15 00:20:32 +02:00
|
|
|
'images' => 'Image_Uploader',
|
2008-08-09 05:19:54 +02:00
|
|
|
'' => 'RootURLController',
|
2009-03-10 23:08:52 +01:00
|
|
|
'api/v1/live' => 'VersionedRestfulServer',
|
2008-08-09 05:19:54 +02:00
|
|
|
'api/v1' => 'RestfulServer',
|
2008-08-11 05:03:52 +02:00
|
|
|
'soap/v1' => 'SOAPModelAccess',
|
2008-12-02 05:33:14 +01:00
|
|
|
'dev' => 'DevelopmentAdmin',
|
|
|
|
'interactive' => 'SapphireREPL',
|
2008-08-09 05:19:54 +02:00
|
|
|
));
|
|
|
|
|
|
|
|
Director::addRules(1, array(
|
2008-08-09 06:38:44 +02:00
|
|
|
'$URLSegment//$Action/$ID/$OtherID' => 'ModelAsController',
|
2008-08-09 05:19:54 +02:00
|
|
|
));
|
|
|
|
|
2008-04-05 05:43:58 +02:00
|
|
|
/**
|
|
|
|
* 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);
|
|
|
|
|
2007-09-16 02:46:51 +02:00
|
|
|
|
2007-09-16 02:44:30 +02:00
|
|
|
/**
|
|
|
|
* The root directory of TinyMCE
|
|
|
|
*/
|
2009-06-15 04:04:29 +02:00
|
|
|
define('MCE_ROOT', 'jsparty/tiny_mce/');
|
2007-09-15 04:12:52 +02: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:
|
|
|
|
* {@link http://doc.silverstripe.com/doku.php?id=email_bouncehandler}
|
2007-09-16 02:35:09 +02:00
|
|
|
*/
|
|
|
|
define('EMAIL_BOUNCEHANDLER_KEY', '1aaaf8fb60ea253dbf6efa71baaacbb3');
|
2007-09-15 23:51:37 +02:00
|
|
|
|
2009-03-10 23:08:52 +01:00
|
|
|
?>
|