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