silverstripe-framework/tests/php/Control/ControllerTest/UnsecuredController.php

25 lines
466 B
PHP
Raw Normal View History

2016-10-14 03:30:05 +02:00
<?php
namespace SilverStripe\Control\Tests\ControllerTest;
use SilverStripe\Control\Controller;
use SilverStripe\Dev\TestOnly;
class UnsecuredController extends Controller implements TestOnly
{
private static $url_segment = 'UnsecuredController';
2016-10-14 03:30:05 +02:00
// Not defined, allow access to all
// static $allowed_actions = [];
2016-10-14 03:30:05 +02:00
// Granted for all
public function method1()
{
}
2016-10-14 03:30:05 +02:00
// Granted for all
public function method2()
{
}
2016-10-14 03:30:05 +02:00
}