mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
16 lines
356 B
PHP
16 lines
356 B
PHP
<?php
|
|
|
|
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']);
|