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',
|
|
|
|
'db/$Action' => 'DatabaseAdmin',
|
|
|
|
'$Controller' => array(
|
|
|
|
),
|
|
|
|
'images/$Action/$Class/$ID/$Field' => 'Image_Uploader',
|
|
|
|
'' => 'RootURLController',
|
|
|
|
'sitemap.xml' => 'GoogleSitemap',
|
|
|
|
'api/v1' => 'RestfulServer',
|
|
|
|
));
|
|
|
|
|
|
|
|
Director::addRules(1, array(
|
|
|
|
'$URLSegment/$Action/$ID/$OtherID' => array(
|
|
|
|
'_PopTokeniser' => 1,
|
|
|
|
'Controller' => 'ModelAsController',
|
|
|
|
),
|
|
|
|
));
|
|
|
|
|
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-15 04:12:52 +02:00
|
|
|
/**
|
2007-10-02 05:20:56 +02:00
|
|
|
* Add pear parser to include path
|
2007-09-15 04:12:52 +02:00
|
|
|
*/
|
2007-10-02 05:20:56 +02:00
|
|
|
$path = Director::baseFolder().'/sapphire/parsers/';
|
|
|
|
set_include_path(get_include_path() . PATH_SEPARATOR . $path);
|
2007-09-15 02:08:23 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Register the {@link OpenIDAuthenticator OpenID authenticator}
|
|
|
|
*/
|
2007-09-16 02:44:30 +02:00
|
|
|
Authenticator::register_authenticator('MemberAuthenticator');
|
2007-11-06 22:18:27 +01:00
|
|
|
Authenticator::set_default_authenticator('MemberAuthenticator');
|
2007-09-15 02:08:23 +02:00
|
|
|
|
2007-09-15 02:12:28 +02:00
|
|
|
/**
|
|
|
|
* Define a default language different than english
|
|
|
|
*/
|
2007-09-15 22:06:42 +02:00
|
|
|
//i18n::set_locale('ca_AD');
|
2007-09-15 04:12:52 +02:00
|
|
|
|
2007-09-16 02:46:51 +02:00
|
|
|
|
2007-09-16 02:44:30 +02:00
|
|
|
/**
|
|
|
|
* The root directory of TinyMCE
|
|
|
|
*/
|
2007-09-15 04:12:52 +02:00
|
|
|
define('MCE_ROOT', 'jsparty/tiny_mce2/');
|
|
|
|
|
2007-09-15 23:51:37 +02:00
|
|
|
/**
|
|
|
|
* Should passwords be encrypted (TRUE) or stored in clear text (FALSE)?
|
|
|
|
*/
|
|
|
|
Security::encrypt_passwords(true);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Which algorithm should be used to encrypt? Should a salt be used to
|
|
|
|
* increase the security?
|
|
|
|
*
|
|
|
|
* You can get a list of supported algorithms by calling
|
|
|
|
* {@link Security::get_encryption_algorithms()}
|
|
|
|
*/
|
|
|
|
Security::set_password_encryption_algorithm('sha1', true);
|
|
|
|
|
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
|
|
|
|
2007-09-16 02:46:51 +02:00
|
|
|
|
2008-05-15 10:45:21 +02:00
|
|
|
// Default director
|
|
|
|
Director::addRules(10, array(
|
|
|
|
'Security/$Action/$ID' => 'Security',
|
|
|
|
'db/$Action' => 'DatabaseAdmin',
|
|
|
|
'$Controller/$Action/$ID/$OtherID' => '*',
|
|
|
|
'images/$Action/$Class/$ID/$Field' => 'Image_Uploader',
|
|
|
|
'' => 'RootURLController',
|
|
|
|
'sitemap.xml' => 'GoogleSitemap',
|
2008-08-09 04:16:46 +02:00
|
|
|
'api/v1/$ClassName/$ID/$Relation' => 'RestfulServer',
|
2008-05-15 10:45:21 +02:00
|
|
|
'dev/$Action/$NestedAction' => 'DevelopmentAdmin'
|
|
|
|
));
|
|
|
|
|
|
|
|
Director::addRules(1, array(
|
|
|
|
'$URLSegment/$Action/$ID/$OtherID' => 'ModelAsController',
|
|
|
|
));
|
|
|
|
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
?>
|