Ekdant-Online-Store/catalog/controller/event/debug.php
2024-08-06 18:06:00 +05:45

56 lines
1.1 KiB
PHP

<?php
namespace Opencart\Catalog\Controller\Event;
/**
* Class Debug
*
* @package Opencart\Catalog\Controller\Event
*/
class Debug extends \Opencart\System\Engine\Controller {
/**
* @param string $route
* @param array $args
*
* @return void
*/
public function index(string &$route, array &$args): void {
//echo $route;
}
/**
* @param string $route
* @param array $args
*
* @return void
*/
public function before(string &$route, array &$args): void {
// add the route you want to test
/*
if ($route == 'common/home') {
$this->session->data['debug'][$route] = microtime(true);
}
*/
}
/**
* @param string $route
* @param array $args
* @param mixed $output
*
* @return void
*/
public function after(string $route, array &$args, mixed &$output): void {
// add the route you want to test
/*
if ($route == 'common/home') {
if (isset($this->session->data['debug'][$route])) {
$log_data = [
'route' => $route,
'time' => microtime(true) - $this->session->data['debug'][$route]
];
$this->log->write($log_data);
}
}
*/
}
}