2025-03-12 10:47:34 +08:00

69 lines
1.8 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
namespace crmeb\utils;
use think\helper\Str;
/**
*
* Class Hook
* @package crmeb\utils
*/
class Hook
{
/**
* 类名
* @var string
*/
protected $namespace;
/**
* 方法前缀
* @var string
*/
protected $prefix;
/**
* 构造方法
* Hook constructor.
* @param string $namespace
* @param string|null $prefix
*/
public function __construct(string $namespace, string $prefix = null)
{
$this->namespace = $namespace;
if ($prefix) {
$this->prefix = $prefix;
}
}
/**
* 执行挂载方法
* @param string $hookName
* @param mixed ...$arguments
* @return bool
*/
public function listen(string $hookName, ...$arguments)
{
if (class_exists($this->namespace)) {
$handle = app()->make($this->namespace);
$hookName = Str::studly(($this->prefix ?: '') . ucfirst($hookName));
if (method_exists($handle, $hookName)) {
try {
return call_user_func_array([$handle, $hookName], $arguments);
} catch (\Throwable $e) {
}
}
}
return false;
}
}