1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-20 11:16:36 +02:00
ttrss/classes/pref/system.php

105 lines
2.8 KiB
PHP
Raw Normal View History

2013-04-17 06:42:39 +02:00
<?php
class Pref_System extends Handler_Protected {
function before($method) {
if (parent::before($method)) {
if ($_SESSION["access_level"] < 10) {
print __("Your access level is insufficient to open this tab.");
return false;
}
return true;
}
return false;
}
function csrf_ignore($method) {
$csrf_ignored = array("index");
return array_search($method, $csrf_ignored) !== false;
}
2013-04-29 21:12:54 +02:00
function clearLog() {
2017-12-02 10:03:39 +01:00
$this->pdo->query("DELETE FROM ttrss_error_log");
2013-04-29 21:12:54 +02:00
}
2013-04-17 06:42:39 +02:00
function index() {
print "<div dojoType=\"dijit.layout.AccordionContainer\" region=\"center\">";
print "<div dojoType=\"dijit.layout.AccordionPane\"
title=\"<i class='material-icons'>report</i> ".__('Event Log')."\">";
2013-04-17 06:42:39 +02:00
if (LOG_DESTINATION == "sql") {
2017-12-02 10:03:39 +01:00
$res = $this->pdo->query("SELECT errno, errstr, filename, lineno,
2015-12-04 13:58:20 +01:00
created_at, login, context FROM ttrss_error_log
LEFT JOIN ttrss_users ON (owner_uid = ttrss_users.id)
ORDER BY ttrss_error_log.id DESC
LIMIT 100");
print "<button dojoType=\"dijit.form.Button\"
2018-12-03 10:46:00 +01:00
onclick=\"Helpers.updateEventLog()\">".__('Refresh')."</button> ";
2013-04-29 21:12:54 +02:00
print "&nbsp;<button dojoType=\"dijit.form.Button\"
class=\"alt-danger\" onclick=\"Helpers.clearEventLog()\">".__('Clear')."</button> ";
2013-04-29 21:12:54 +02:00
print "<p><table width=\"100%\" cellspacing=\"10\" class=\"prefErrorLog\">";
print "<tr class=\"title\">
<td width='5%'>".__("Error")."</td>
<td>".__("Filename")."</td>
<td>".__("Message")."</td>
<td width='5%'>".__("User")."</td>
<td width='5%'>".__("Date")."</td>
</tr>";
2017-12-02 10:03:39 +01:00
while ($line = $res->fetch()) {
print "<tr>";
foreach ($line as $k => $v) {
$line[$k] = htmlspecialchars($v);
}
print "<td class='errno'>" . Logger::$errornames[$line["errno"]] . " (" . $line["errno"] . ")</td>";
print "<td class='filename'>" . $line["filename"] . ":" . $line["lineno"] . "</td>";
2015-12-04 13:58:20 +01:00
print "<td class='errstr'>" . $line["errstr"] . "<hr/>" . nl2br($line["context"]) . "</td>";
print "<td class='login'>" . $line["login"] . "</td>";
print "<td class='timestamp'>" .
make_local_datetime(
$line["created_at"], false) . "</td>";
print "</tr>";
2013-04-17 06:42:39 +02:00
}
print "</table>";
} else {
2013-04-17 06:42:39 +02:00
print_notice("Please set LOG_DESTINATION to 'sql' in config.php to enable database logging.");
2013-04-17 06:42:39 +02:00
}
print "</div>";
2019-02-20 06:51:48 +01:00
print "<div dojoType=\"dijit.layout.AccordionPane\"
title=\"<i class='material-icons'>info</i> ".__('PHP Information')."\">";
ob_start();
phpinfo();
$info = ob_get_contents();
ob_end_clean();
print "<div class='phpinfo'>";
print preg_replace( '%^.*<body>(.*)</body>.*$%ms','$1', $info);
print "</div>";
print "</div>";
2013-04-18 10:27:34 +02:00
PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_TAB,
2013-04-17 06:42:39 +02:00
"hook_prefs_tab", "prefSystem");
print "</div>"; #container
}
}