aboutsummaryrefslogtreecommitdiff
path: root/app/controllers/debugbar.php
diff options
context:
space:
mode:
authorPhilipp Schüttlöffel <schuettloeffel@zqs.uni-hannover.de>2024-09-24 10:53:31 +0200
committerPhilipp Schüttlöffel <schuettloeffel@zqs.uni-hannover.de>2024-09-24 10:53:31 +0200
commit4459dd7917f4d1c34f40bb68f0e991e9c3d53e4c (patch)
tree5c07151ae61276d334e88f6309c30d439a85c12e /app/controllers/debugbar.php
parentda0022e5c1abbf9825ae76debaabdff7e8623bb4 (diff)
parent97a188592c679890a25c37ab78463add76a52ff7 (diff)
Merge branch 'main' into issue-3911issue-3911
Diffstat (limited to 'app/controllers/debugbar.php')
-rw-r--r--app/controllers/debugbar.php24
1 files changed, 24 insertions, 0 deletions
diff --git a/app/controllers/debugbar.php b/app/controllers/debugbar.php
new file mode 100644
index 0000000..59627f2
--- /dev/null
+++ b/app/controllers/debugbar.php
@@ -0,0 +1,24 @@
+<?php
+final class DebugbarController extends Trails_Controller
+{
+ public function __construct(
+ Trails\Dispatcher $dispatcher,
+ private readonly DebugBar\DebugBar $debugbar
+ ) {
+ parent::__construct($dispatcher);
+ }
+
+ public function css_action(): void
+ {
+ $this->set_content_type('text/css;charset=utf-8');
+ $this->render_nothing();
+ $this->debugbar->getJavascriptRenderer()->dumpCssAssets();
+ }
+
+ public function js_action(): void
+ {
+ $this->set_content_type('text/javascript;charset=utf-8');
+ $this->render_nothing();
+ $this->debugbar->getJavascriptRenderer()->setIncludeVendors(false)->dumpJsAssets();
+ }
+}