2017-06-21 06:29:40 +02:00
|
|
|
<?php
|
|
|
|
|
2017-08-09 04:53:38 +02:00
|
|
|
namespace SilverStripe\CMS\Tests\Model;
|
2017-08-09 03:25:12 +02:00
|
|
|
|
2017-06-21 06:29:40 +02:00
|
|
|
use SilverStripe\Dev\TestOnly;
|
2018-05-04 03:04:18 +02:00
|
|
|
use SilverStripe\CMS\Controllers\ContentController;
|
2017-08-09 03:25:12 +02:00
|
|
|
|
2018-05-04 03:04:18 +02:00
|
|
|
class VirtualPageTest_ClassAController extends ContentController implements TestOnly
|
2017-06-21 06:29:40 +02:00
|
|
|
{
|
|
|
|
private static $allowed_actions = [
|
2018-05-04 03:04:18 +02:00
|
|
|
'testaction',
|
2017-06-21 06:29:40 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
public function testMethod()
|
|
|
|
{
|
|
|
|
return 'hello';
|
|
|
|
}
|
|
|
|
}
|