mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
30 lines
1.1 KiB
PHP
30 lines
1.1 KiB
PHP
<?PHP // $Id$
|
|
// dbperformance.php - shows latest ADOdb stats for the current server
|
|
|
|
require_once('../config.php');
|
|
|
|
error('TODO: rewrite db perf code'); // TODO: rewrite
|
|
|
|
// disable moodle specific debug messages that would be breaking the frames
|
|
disable_debugging();
|
|
|
|
$topframe = optional_param('topframe', 0, PARAM_BOOL);
|
|
$bottomframe = optional_param('bottomframe', 0, PARAM_BOOL);
|
|
$do = optional_param('do', '', PARAM_ALPHA);
|
|
|
|
require_login();
|
|
|
|
require_capability('moodle/site:config', get_context_instance(CONTEXT_SYSTEM));
|
|
|
|
$strdatabaseperformance = get_string("databaseperformance");
|
|
$stradministration = get_string("administration");
|
|
$site = get_site();
|
|
|
|
$navigation = build_navigation(array(
|
|
array('name'=>$stradministration, 'link'=>'index.php', 'type'=>'misc'),
|
|
array('name'=>$strdatabaseperformance, 'link'=>null, 'type'=>'misc')));
|
|
if (!empty($topframe)) {
|
|
print_header("$site->shortname: $strdatabaseperformance", "$site->fullname", $navigation);
|
|
exit;
|
|
}
|