aboutsummaryrefslogtreecommitdiffstats
path: root/public/catalog/controller/event/debug.php
diff options
context:
space:
mode:
Diffstat (limited to 'public/catalog/controller/event/debug.php')
-rw-r--r--public/catalog/controller/event/debug.php21
1 files changed, 21 insertions, 0 deletions
diff --git a/public/catalog/controller/event/debug.php b/public/catalog/controller/event/debug.php
new file mode 100644
index 0000000..fa66f1b
--- /dev/null
+++ b/public/catalog/controller/event/debug.php
@@ -0,0 +1,21 @@
+<?php
+class ControllerEventDebug extends Controller {
+ public function before(&$route, &$args) {
+ if ($route == 'common/home') { // add the route you want to test
+ $this->session->data['debug'][$route] = microtime();
+ }
+ }
+
+ public function after($route, &$args, &$output) {
+ if ($route == 'common/home') { // add the route you want to test
+ if (isset($this->session->data['debug'][$route])) {
+ $log_data = array(
+ 'route' => $route,
+ 'time' => microtime() - $this->session->data['debug'][$route]
+ );
+
+ $this->log->write($log_data);
+ }
+ }
+ }
+}