Skip to content

Instantly share code, notes, and snippets.

@muskie9
Created May 1, 2018 18:00
Show Gist options
  • Save muskie9/d9360d4b255a260a27b2c34bdd24627c to your computer and use it in GitHub Desktop.
Save muskie9/d9360d4b255a260a27b2c34bdd24627c to your computer and use it in GitHub Desktop.
<?php
\SilverStripe\View\Parsers\ShortcodeParser::get('default')->unregister('embed');
\SilverStripe\View\Parsers\ShortcodeParser::get('default')->register(
'embed',
function ($arguments, $content = null, $parser = null, $tagName) {
return \Your\Namespace\Here\MyEmbedShortcodeProvider::handle_shortcode(
$arguments,
$content,
$parser,
$tagName
);
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment