mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
17 lines
305 B
PHP
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();
|
||
|
}
|
||
|
}
|