mirror of
https://github.com/godotengine/godot-question2answer.git
synced 2026-01-01 01:48:37 +03:00
This project lived only on the server without version control. This is now the starting point for the repository.
55 lines
1.1 KiB
PHP
55 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* @deprecated This file is deprecated from Q2A 1.7; use Q2A_Util_Usage class (Q2A/Util/Usage.php) instead.
|
|
*
|
|
* The functions in this file are maintained for backwards compatibility, but simply call through to the
|
|
* new class where applicable.
|
|
*/
|
|
|
|
if (!defined('QA_VERSION')) {
|
|
header('Location: ../');
|
|
exit;
|
|
}
|
|
|
|
if (defined('QA_DEBUG_PERFORMANCE') && QA_DEBUG_PERFORMANCE) {
|
|
trigger_error('Included file ' . basename(__FILE__) . ' is deprecated');
|
|
}
|
|
|
|
function qa_usage_init()
|
|
{
|
|
// should already be initialised in qa-base.php
|
|
global $qa_usage;
|
|
if (empty($qa_usage))
|
|
$qa_usage = new Q2A_Util_Usage;
|
|
}
|
|
|
|
function qa_usage_get()
|
|
{
|
|
global $qa_usage;
|
|
return $qa_usage->getCurrent();
|
|
}
|
|
|
|
function qa_usage_delta($oldusage, $newusage)
|
|
{
|
|
// equivalent function is now private
|
|
return array();
|
|
}
|
|
|
|
function qa_usage_mark($stage)
|
|
{
|
|
global $qa_usage;
|
|
return $qa_usage->mark($stage);
|
|
}
|
|
|
|
function qa_usage_line($stage, $usage, $totalusage)
|
|
{
|
|
// equivalent function is now private
|
|
return '';
|
|
}
|
|
|
|
function qa_usage_output()
|
|
{
|
|
global $qa_usage;
|
|
return $qa_usage->output();
|
|
}
|