mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
28 lines
554 B
PHP
28 lines
554 B
PHP
|
<?php
|
||
|
|
||
|
namespace SilverStripe\Security\Tests\BasicAuthTest;
|
||
|
|
||
|
use SilverStripe\Control\Controller;
|
||
|
use SilverStripe\Dev\TestOnly;
|
||
|
|
||
|
/**
|
||
|
* @skipUpgrade
|
||
|
*/
|
||
|
class ControllerNotSecured extends Controller implements TestOnly
|
||
|
{
|
||
|
protected $template = 'BlankPage';
|
||
|
|
||
|
/**
|
||
|
* Disable legacy global-enable
|
||
|
*
|
||
|
* @deprecated 4.0..5.0
|
||
|
* @var bool
|
||
|
*/
|
||
|
protected $basicAuthEnabled = false;
|
||
|
|
||
|
public function Link($action = null)
|
||
|
{
|
||
|
return Controller::join_links('BasicAuthTest_ControllerNotSecured', $action, '/');
|
||
|
}
|
||
|
}
|