2017-06-21 16:29:40 +12:00
|
|
|
<?php
|
|
|
|
|
2017-08-09 14:53:38 +12:00
|
|
|
namespace SilverStripe\CMS\Tests\Controllers;
|
2017-08-09 13:25:12 +12:00
|
|
|
|
2017-06-21 16:29:40 +12:00
|
|
|
use SilverStripe\Dev\TestOnly;
|
2017-08-09 13:25:12 +12:00
|
|
|
use PageController;
|
|
|
|
|
2017-06-21 16:29:40 +12:00
|
|
|
class ContentControllerTest_PageController extends PageController implements TestOnly
|
|
|
|
{
|
|
|
|
|
2020-04-19 16:18:01 +12:00
|
|
|
private static $allowed_actions = [
|
2017-06-21 16:29:40 +12:00
|
|
|
'second_index'
|
2020-04-19 16:18:01 +12:00
|
|
|
];
|
2017-06-21 16:29:40 +12:00
|
|
|
|
|
|
|
public function index()
|
|
|
|
{
|
|
|
|
return $this->Title;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function second_index()
|
|
|
|
{
|
|
|
|
return $this->index();
|
|
|
|
}
|
|
|
|
}
|