summaryrefslogtreecommitdiff
path: root/classes/pref/system.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-02-13 13:37:57 +0300
committerAndrew Dolgov <[email protected]>2021-02-13 13:37:57 +0300
commitaa63014073a42b123145db487276a8b6e366a510 (patch)
treee9b1690a07e50a530c0464b053b89ad52ae693b2 /classes/pref/system.php
parent46f6d7c11a85f78ffaad649b7f591effff52706f (diff)
pref-labels index: use cleaner markup
Diffstat (limited to 'classes/pref/system.php')
-rw-r--r--classes/pref/system.php56
1 files changed, 24 insertions, 32 deletions
diff --git a/classes/pref/system.php b/classes/pref/system.php
index a7512915a..763440d78 100644
--- a/classes/pref/system.php
+++ b/classes/pref/system.php
@@ -150,43 +150,35 @@ class Pref_System extends Handler_Protected {
}
print "</table>";
+ print "</div>";
+ print "</div>";
}
function index() {
$severity = (int) ($_REQUEST["severity"] ?? E_USER_WARNING);
$page = (int) ($_REQUEST["page"] ?? 0);
-
- print "<div dojoType='dijit.layout.AccordionContainer' region='center'>";
- print "<div dojoType='dijit.layout.AccordionPane' style='padding : 0'
- title='<i class=\"material-icons\">report</i> ".__('Event Log')."'>";
-
- if (LOG_DESTINATION == "sql") {
-
- $this->log_viewer($page, $severity);
-
- } else {
- print_notice("Please set LOG_DESTINATION to 'sql' in config.php to enable database logging.");
- }
-
- print "</div>"; # content pane
- print "</div>"; # container
- print "</div>"; # accordion pane
-
- print "<div dojoType='dijit.layout.AccordionPane'
- title='<i class=\"material-icons\">info</i> ".__('PHP Information')."'>";
-
- print "<script type='dojo/method' event='onSelected' args='evt'>
- Helpers.System.getPHPInfo(this);
- </script>";
-
- print "<div class='phpinfo'>" . __("Loading, please wait...") . "</div>";
-
- print "</div>"; # accordion pane
-
- PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_TAB, "prefSystem");
-
- print "</div>"; #container
+ ?>
+ <div dojoType='dijit.layout.AccordionContainer' region='center'>
+ <div dojoType='dijit.layout.AccordionPane' style='padding : 0' title='<i class="material-icons">report</i> <?php echo __('Event Log') ?>'>
+ <?php
+ if (LOG_DESTINATION == "sql") {
+ $this->log_viewer($page, $severity);
+ } else {
+ print_notice("Please set LOG_DESTINATION to 'sql' in config.php to enable database logging.");
+ }
+ ?>
+ </div>
+
+ <div dojoType='dijit.layout.AccordionPane' title='<i class="material-icons">info</i> <?php echo __('PHP Information') ?>'>
+ <script type='dojo/method' event='onSelected' args='evt'>
+ Helpers.System.getPHPInfo(this);
+ </script>
+ <div class='phpinfo'><?php echo __("Loading, please wait...") ?></div>
+ </div>
+
+ <?php PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_TAB, "prefSystem") ?>
+ </div>
+ <?php
}
-
}