mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
22 lines
471 B
PHP
22 lines
471 B
PHP
<?php
|
|
|
|
namespace SilverStripe\Security\Tests\BasicAuthTest;
|
|
|
|
use SilverStripe\Control\Controller;
|
|
use SilverStripe\Dev\TestOnly;
|
|
|
|
class ControllerSecuredWithPermission extends Controller implements TestOnly
|
|
{
|
|
protected $template = 'BlankPage';
|
|
|
|
public function index()
|
|
{
|
|
return "index";
|
|
}
|
|
|
|
public function Link($action = null)
|
|
{
|
|
return Controller::join_links('BasicAuthTest_ControllerSecuredWithPermission', $action, '/');
|
|
}
|
|
}
|