mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
25 lines
416 B
PHP
25 lines
416 B
PHP
<?php
|
|
|
|
namespace SilverStripe\CMS\Tests\Controllers;
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
use PageController;
|
|
|
|
class ContentControllerTest_PageController extends PageController implements TestOnly
|
|
{
|
|
|
|
private static $allowed_actions = [
|
|
'second_index'
|
|
];
|
|
|
|
public function index()
|
|
{
|
|
return $this->Title;
|
|
}
|
|
|
|
public function second_index()
|
|
{
|
|
return $this->index();
|
|
}
|
|
}
|