diff options
author | n-peugnet <n.peugnet@free.fr> | 2019-11-15 15:57:46 +0100 |
---|---|---|
committer | n-peugnet <n.peugnet@free.fr> | 2019-11-15 15:57:46 +0100 |
commit | c1843c0a2ef49de3d2030398f5c14549cc1791ab (patch) | |
tree | 22fd633cc2f19df053d1e7e2bb8e4a5d134890c8 /app/fn/fn.php | |
parent | e4bc65433283e0725a2e7bf07ae0c84f7905af17 (diff) | |
download | wcms-c1843c0a2ef49de3d2030398f5c14549cc1791ab.tar.gz wcms-c1843c0a2ef49de3d2030398f5c14549cc1791ab.zip |
feat: load Sentry browser as an external script
- better way to check if we need to report errors in PHP
- fix make file $(js_bundles) dependencies (add webpack conf)
- update sentry-browser sdk and move it to dev requirements
Diffstat (limited to 'app/fn/fn.php')
-rw-r--r-- | app/fn/fn.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/fn/fn.php b/app/fn/fn.php index f96b8ba..ccccfb9 100644 --- a/app/fn/fn.php +++ b/app/fn/fn.php @@ -72,6 +72,11 @@ function idclean(string $input) return $input; } +function isreportingerrors() +{ + return function_exists('Sentry\init') && !empty(Wcms\Config::sentrydsn()); +} + function getversion() { |