mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
20 lines
499 B
PHP
20 lines
499 B
PHP
<?php
|
|
|
|
use SilverStripe\Dev\Deprecation;
|
|
use SilverStripe\View\Shortcodes\EmbedShortcodeProvider;
|
|
use SilverStripe\View\Parsers\ShortcodeParser;
|
|
|
|
/**
|
|
* Framework configuration file
|
|
*
|
|
* Here you can make different settings for the Framework module (the core
|
|
* module).
|
|
*
|
|
*/
|
|
|
|
ShortcodeParser::get('default')
|
|
->register('embed', [EmbedShortcodeProvider::class, 'handle_shortcode']);
|
|
|
|
// Set to 5.0.0 to show APIs marked for removal at that version
|
|
Deprecation::notification_version('4.0.0');
|