123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
- namespace crmeb\utils;
- use think\helper\Str;
- class Hook
- {
-
- protected $namespace;
-
- protected $prefix;
-
- public function __construct(string $namespace, string $prefix = null)
- {
- $this->namespace = $namespace;
- if ($prefix) {
- $this->prefix = $prefix;
- }
- }
-
- public function listen(string $hookName, ...$arguments)
- {
- if (class_exists($this->namespace)) {
- $handle = new $this->namespace;
- $hookName = Str::studly(($this->prefix ?: '') . ucfirst($hookName));
- if (method_exists($handle, $hookName)) {
- try {
- return $handle->{$hookName}(...$arguments);
- } catch (\Throwable $e) {
- }
- }
- }
- return false;
- }
- }
|