aboutsummaryrefslogtreecommitdiff
path: root/templates/debug/trace-row.php
diff options
context:
space:
mode:
Diffstat (limited to 'templates/debug/trace-row.php')
-rw-r--r--templates/debug/trace-row.php13
1 files changed, 0 insertions, 13 deletions
diff --git a/templates/debug/trace-row.php b/templates/debug/trace-row.php
deleted file mode 100644
index f3d29be..0000000
--- a/templates/debug/trace-row.php
+++ /dev/null
@@ -1,13 +0,0 @@
-<?php
-$file = ltrim(str_replace($GLOBALS['STUDIP_BASE_PATH'], '', $file), '/');
-$trac = htmlReady("https://develop.studip.de/trac/browser/trunk/{$file}#L{$line}");
-?>
-<code>
- <?= htmlReady(sprintf(
- '%s(%s)',
- isset($class) ? "{$class}{$type}{$function}" : $function,
- implode(', ', array_map(function ($arg) { return is_object($arg) ? get_class($arg) : (string) $arg; }, $args))
- )) ?>
-</code>
-<span>called at</span>
-<a href="<?= $trac ?>" target="_blank"><?= htmlReady("{$file}:{$line}") ?></a>