mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
20 lines
363 B
PHP
20 lines
363 B
PHP
<?php
|
|
|
|
namespace SilverStripe\CMS\Tests\Controllers;
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
use PageController;
|
|
|
|
class ContentControllerTestPageController extends PageController implements TestOnly
|
|
{
|
|
private static $allowed_actions = [
|
|
'test',
|
|
'testwithouttemplate',
|
|
];
|
|
|
|
public function testwithouttemplate()
|
|
{
|
|
return [];
|
|
}
|
|
}
|