mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
40 lines
1.3 KiB
PHP
40 lines
1.3 KiB
PHP
<?php
|
|
|
|
use Psr\SimpleCache\CacheInterface;
|
|
use SilverStripe\Dev\Deprecation;
|
|
use SilverStripe\View\Parsers\ShortcodeParser;
|
|
|
|
|
|
|
|
/**
|
|
* Framework configuration file
|
|
*
|
|
* Here you can make different settings for the Framework 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>
|
|
*/
|
|
|
|
ShortcodeParser::get('default')
|
|
->register('file_link', array('SilverStripe\\Assets\\File', 'handle_shortcode'))
|
|
->register('embed', array('SilverStripe\\Forms\\HtmlEditor\\EmbedShortcodeProvider', 'handle_shortcode'))
|
|
->register('image', array('SilverStripe\\Assets\\Image', 'handle_shortcode'));
|
|
|
|
// Shortcode parser which only regenerates shortcodes
|
|
ShortcodeParser::get('regenerator')
|
|
->register('image', array('SilverStripe\\Assets\\Image', 'regenerate_shortcode'));
|
|
|
|
// @todo
|
|
// ->register('dbfile_link', array('DBFile', 'handle_shortcode'))
|
|
|
|
// 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');
|
|
|
|
// TODO Remove once new ManifestBuilder with submodule support is in place
|
|
require_once('admin/_config.php');
|