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