silverstripe-cms/tests/controller/ContentControllerTestPageController.php

17 lines
305 B
PHP
Raw Normal View History

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