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
|
|
|
*/
|
|
|
|
|
2015-09-15 04:52:02 +02:00
|
|
|
ShortcodeParser::get('default')
|
|
|
|
->register('file_link', array('File', 'handle_shortcode'))
|
2016-03-08 12:20:51 +01:00
|
|
|
->register('embed', array('Oembed', 'handle_shortcode'))
|
|
|
|
->register('image', array('Image', 'handle_shortcode'));
|
|
|
|
|
|
|
|
// Shortcode parser which only regenerates shortcodes
|
|
|
|
ShortcodeParser::get('regenerator')
|
|
|
|
->register('image', array('Image', 'regenerate_shortcode'));
|
|
|
|
|
2015-09-15 04:52:02 +02:00
|
|
|
// @todo
|
|
|
|
// ->register('dbfile_link', array('DBFile', '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');
|