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;
|
2017-08-09 03:25:12 +02:00
|
|
|
use PageController;
|
|
|
|
|
2017-06-21 06:29:40 +02:00
|
|
|
class SiteTreeTest_ConflictedController extends PageController implements TestOnly
|
|
|
|
{
|
2020-04-19 06:18:01 +02:00
|
|
|
private static $allowed_actions = [
|
2017-06-21 06:29:40 +02:00
|
|
|
'conflicted-action'
|
2020-04-19 06:18:01 +02:00
|
|
|
];
|
2017-06-21 06:29:40 +02:00
|
|
|
|
|
|
|
public function hasActionTemplate($template)
|
|
|
|
{
|
|
|
|
if ($template == 'conflicted-template') {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return parent::hasActionTemplate($template);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|