aboutsummaryrefslogtreecommitdiff
path: root/app/controllers/debugbar.php
diff options
context:
space:
mode:
authorJan-Hendrik Willms <tleilax+studip@gmail.com>2024-05-28 07:55:24 +0000
committerJan-Hendrik Willms <tleilax+studip@gmail.com>2024-05-28 07:55:24 +0000
commitfe2b584cb79ba8a2c642be085cacdd82d526df25 (patch)
tree875665187b3f3c9e26bc0056bf9d658c8b724d29 /app/controllers/debugbar.php
parent4e798558115a71c61d9a5f77a909356aeb0873b6 (diff)
add debug bar, fixes #4220
Closes #4220 Merge request studip/studip!3049
Diffstat (limited to 'app/controllers/debugbar.php')
-rw-r--r--app/controllers/debugbar.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/app/controllers/debugbar.php b/app/controllers/debugbar.php
new file mode 100644
index 0000000..a80000d
--- /dev/null
+++ b/app/controllers/debugbar.php
@@ -0,0 +1,17 @@
+<?php
+final class DebugbarController extends Trails_Controller
+{
+ public function css_action(): void
+ {
+ $this->set_content_type('text/css;charset=utf-8');
+ $this->render_nothing();
+ app()->get(DebugBar\DebugBar::class)->getJavascriptRenderer()->dumpCssAssets();
+ }
+
+ public function js_action(): void
+ {
+ $this->set_content_type('text/javascript;charset=utf-8');
+ $this->render_nothing();
+ app()->get(DebugBar\DebugBar::class)->getJavascriptRenderer()->setIncludeVendors(false)->dumpJsAssets();
+ }
+}