silverstripe-framework/tests/php/Security/BasicAuthTest/ControllerSecuredWithoutPermission.php
2016-12-19 16:08:19 +13:00

25 lines
569 B
PHP

<?php
namespace SilverStripe\Security\Tests\BasicAuthTest;
use SilverStripe\Control\Controller;
use SilverStripe\Dev\TestOnly;
use SilverStripe\Security\BasicAuth;
class ControllerSecuredWithoutPermission extends Controller implements TestOnly
{
protected $template = 'BlankPage';
protected function init()
{
BasicAuth::protect_entire_site(true, null);
parent::init();
}
public function Link($action = null)
{
return Controller::join_links('BasicAuthTest_ControllerSecuredWithoutPermission', $action, '/');
}
}