silverstripe-framework/tests/php/Security/BasicAuthTest/ControllerSecuredWithoutPermission.php

20 lines
436 B
PHP
Raw Normal View History

2016-10-14 03:30:05 +02:00
<?php
namespace SilverStripe\Security\Tests\BasicAuthTest;
use SilverStripe\Control\Controller;
use SilverStripe\Dev\TestOnly;
/**
* @skipUpgrade
*/
2016-10-14 03:30:05 +02:00
class ControllerSecuredWithoutPermission extends Controller implements TestOnly
{
protected $template = 'BlankPage';
2016-10-14 03:30:05 +02:00
public function Link($action = null)
{
return Controller::join_links('BasicAuthTest_ControllerSecuredWithoutPermission', $action, '/');
}
2016-10-14 03:30:05 +02:00
}