В системных настройках-->Дополнительные настройки-->Вывод общей статистики публичной части --> режим dev - добавлен вывод имени текущего .tpl шаблона

This commit is contained in:
2026-04-10 21:41:31 +05:00
parent 28a23fd308
commit fbfa0770fb
2 changed files with 14 additions and 0 deletions

View File

@@ -890,6 +890,19 @@
$stat = Debug::formatSize(memory_get_peak_usage());
break;
case 'template':
$mod = $_REQUEST['module'] ?? 'index';
$act = $_REQUEST['action'] ?? 'main';
$stat = "[{$mod}] -> {$act}.tpl";
if (isset($AVE_Template)) {
$real_tpl = $AVE_Template->template_resource ?? $AVE_Template->_current_file ?? null;
if ($real_tpl) {
$stat = basename($real_tpl);
}
}
break;
case 'sqlcount':
$stat = $AVE_DB->DBProfilesGet('count');
break;

View File

@@ -1316,6 +1316,7 @@ function get_settings($field = '')
$dev_output .= "\r\n" . "------ Time generation: ".Debug::getStatistic('time')." sec ----- ";
$dev_output .= "\r\n" . "------ Memory usage: ".Debug::getStatistic('memory')." ----- ";
$dev_output .= "\r\n" . "------ Memory peak usage: ".Debug::getStatistic('peak')." ----- ";
$dev_output .= "\r\n" . "------ Template: ".Debug::getStatistic('template')." ----- ";
if (defined('SQL_PROFILING') && SQL_PROFILING)
$dev_output .= "\r\n" . "------ SQL Queries: ".$AVE_DB->DBProfilesGet('count')." for ".$AVE_DB->DBProfilesGet('time')." sec ----- ";