20 lines
402 B
PHP
Raw Normal View History

2016-10-14 14:30:05 +13:00
<?php
namespace SilverStripe\ORM\Tests\DBHTMLTextTest;
use SilverStripe\Dev\TestOnly;
use SilverStripe\View\Parsers\ShortcodeHandler;
class TestShortcode implements ShortcodeHandler, TestOnly
{
public static function get_shortcodes()
{
return 'test';
}
public static function handle_shortcode($arguments, $content, $parser, $shortcode, $extra = array())
{
return 'shortcode content';
}
}