Skip to content

Commit 1863ad5

Browse files
committed
Add in a way to customize the instance title
1 parent 070b8e2 commit 1863ad5

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

config.php.example

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
<?php
22
// Settings
33

4+
// Change to a string for a customized title for this instance
5+
$settings['title'] = null;
6+
47
// Syntax highlight queries?
58
$settings['sqlColor'] = true;
69

init.php

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
// Set default settings here. Can be overridden in config.php.
44
$settings = array();
55
$settings['sqlColor'] = true;
6+
$settings['title'] = null;
67

78
require_once('config.php');
89
require_once('libs/Database/Database.php');

list-ajax.php

+4-2
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
$query = 'SELECT SQL_CALC_FOUND_ROWS ';
99
$query .= ' review.checksum AS checksum,';
1010
$query .= ' review.fingerprint AS fingerprint,';
11-
$query .= ' DATE(review.first_seen) AS first_seen,';
12-
$query .= ' DATE(review.last_seen) AS last_seen,';
1311
$query .= " IFNULL(review.reviewed_by, '') AS reviewed_by,";
1412
$query .= ' DATE(review.reviewed_on) AS reviewed_on,';
1513
$query .= ' review.comments AS comments,';
1614
if (strlen($reviewhost['history_table'])) {
15+
$query .= ' DATE(MIN(history.ts_min)) AS first_seen,';
16+
$query .= ' DATE(MAX(history.ts_max)) AS last_seen,';
1717
$query .= ' SUM(history.ts_cnt) AS `count`,';
1818
$query .= ' ROUND(SUM(history.query_time_sum), 2)*1000 AS `time`,';
1919
$query .= ' ROUND(SUM(history.query_time_sum)*1000/SUM(history.ts_cnt), 2) AS time_avg';
@@ -22,6 +22,8 @@
2222
$query .= ' ON history.checksum = review.checksum';
2323
}
2424
else {
25+
$query .= ' DATE(review.first_seen) AS first_seen,';
26+
$query .= ' DATE(review.last_seen) AS last_seen,';
2527
$query .= ' 0 AS `count`,';
2628
$query .= ' 0 AS `time`,';
2729
$query .= ' 0 AS time_avg';

templates/header.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<title>Query Digest UI</title>
4+
<title><?php if(!is_null($settings['title'])) echo $settings['title'].' - '; ?>Query Digest UI</title>
55

66
<script src="js/jquery-1.7.1.min.js" type="text/javascript"></script>
77

0 commit comments

Comments
 (0)