1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
<?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]);
}
}
}
}
|