12345678910111213141516171819202122232425 |
- <?php
- namespace addons\shopro\library;
- class Hook
- {
- public function __construct()
- {
-
- }
- public static function register ($behaviors = []) {
- $default = require ROOT_PATH . 'addons/shopro/hooks.php';
- $behaviors = array_merge($default, $behaviors);
- foreach ($behaviors as $tag => $behavior) {
-
- $behavior = array_reverse($behavior);
- foreach ($behavior as $be) {
- \think\Hook::add($tag, $be, true);
- }
- }
- }
- }
|