Files
dominik/public/system/config/engine/event.php
T
Konstantin 80e5820c47 Refactor engine structure: remove legacy files and introduce new architecture
- Deleted legacy model.php, proxy.php, registry.php, and router.php files.
- Added new action.php, controller.php, event.php, loader.php, model.php, proxy.php, registry.php, and router.php files to implement a more modular and maintainable structure.
- Introduced an event-driven architecture for better extensibility.
- Updated loader functionality to handle controllers, models, views, libraries, helpers, and configurations.
- Ensured compatibility with OpenCart standards and improved error handling.
- Created a new DDEV configuration file for streamlined development environment setup.
2026-06-12 11:14:59 +03:00

97 lines
1.9 KiB
PHP

<?php
/**
* @package OpenCart
* @author Daniel Kerr
* @copyright Copyright (c) 2005 - 2017, OpenCart, Ltd. (https://www.opencart.com/)
* @license https://opensource.org/licenses/GPL-3.0
* @link https://www.opencart.com
*/
/**
* Event class
*
* Event System Userguide
*
* https://github.com/opencart/opencart/wiki/Events-(script-notifications)-2.2.x.x
*/
class Event {
protected $registry;
protected $data = array();
/**
* Constructor
*
* @param object $route
*/
public function __construct($registry) {
$this->registry = $registry;
}
/**
*
*
* @param string $trigger
* @param object $action
* @param int $priority
*/
public function register($trigger, Action $action, $priority = 0) {
$this->data[] = array(
'trigger' => $trigger,
'action' => $action,
'priority' => $priority
);
$sort_order = array();
foreach ($this->data as $key => $value) {
$sort_order[$key] = $value['priority'];
}
array_multisort($sort_order, SORT_ASC, $this->data);
}
/**
*
*
* @param string $event
* @param array $args
*/
public function trigger($event, array $args = array()) {
foreach ($this->data as $value) {
if (preg_match('/^' . str_replace(array('\*', '\?'), array('.*', '.'), preg_quote($value['trigger'], '/')) . '/', $event)) {
$result = $value['action']->execute($this->registry, $args);
if (!is_null($result) && !($result instanceof Exception)) {
return $result;
}
}
}
}
/**
*
*
* @param string $trigger
* @param string $route
*/
public function unregister($trigger, $route) {
foreach ($this->data as $key => $value) {
if ($trigger == $value['trigger'] && $value['action']->getId() == $route) {
unset($this->data[$key]);
}
}
}
/**
*
*
* @param string $trigger
*/
public function clear($trigger) {
foreach ($this->data as $key => $value) {
if ($trigger == $value['trigger']) {
unset($this->data[$key]);
}
}
}
}