silverstripe-cms/tests/php/Controllers/ContentControllerTestPageController.php
2017-08-09 16:58:07 +12:00

17 lines
305 B
PHP

<?php
use SilverStripe\Dev\TestOnly;
class ContentControllerTestPageController extends PageController implements TestOnly
{
private static $allowed_actions = array(
'test',
'testwithouttemplate'
);
public function testwithouttemplate()
{
return array();
}
}