silverstripe-environmentcheck/code/DevCheckController.php

38 lines
640 B
PHP

<?php
class DevCheckController extends Controller {
/**
* @var array
*/
public static $allowed_actions = array(
'index'
);
/**
* Permission code to check for access to this controller.
*
* @var string
*/
private static $permission = 'ADMIN';
/**
* @param SS_HTTPRequest $request
*
* @return EnvironmentChecker
*
* @throws SS_HTTPResponse_Exception
*/
function index($request) {
$suite = 'check';
if ($name = $request->param('Suite')) {
$suite = $name;
}
$checker = new EnvironmentChecker($suite, 'Environment status');
$checker->init($this->config()->permission);
return $checker;
}
}