kenta / php-hooks
该包已被弃用且不再维护。没有建议的替代包。
WordPress 过滤器钩子系统的分支,被整合到类中,可移植到任何基于PHP的系统
v1.0
2017-12-21 15:27 UTC
This package is auto-updated.
Last update: 2020-08-29 06:12:16 UTC
README
PHP Hooks 类是从WordPress过滤器钩子系统分支出来,并将其整合到类中,以便移植到任何基于php的系统
- 此类主要基于WordPress插件API,大部分(如果不是全部)的代码都来自那里。
如何使用?
简单,将类文件包含在您的应用程序引导文件(设置/加载/配置或您称之为什么)中,然后使用 hooks
开始连接您的过滤器和动作钩子。例如:
include_once('php-hooks.php'); hooks::add_action('header_action','echo_this_in_header'); function echo_this_in_header(){ echo 'this came from a hooked function'; }
然后,您只需在应用程序的任何位置调用钩子函数即可,例如:
echo '<div id="extra_header">'; hooks::do_action('header_action'); echo '</div>';
您的输出将是
<div id="extra_header">this came from a hooked function</div>
方法
动作
add_action 将函数连接到特定的动作。
- @access public
- @since 0.1
- @param string $tag The name of the action to which the $function_to_add is hooked.
- @param callback $function_to_add The name of the function you wish to be called.
- @param int $priority optional. Used to specify the order in which the functions associated with a particular action are executed (default: 10). Lower numbers correspond with earlier execution, and functions with the same priority are executed in the order in which they were added to the action.
- @param int $accepted_args optional. The number of arguments the function accept (default 1).
do_action 执行特定动作钩子上的函数。
- @access public
- @since 0.1
- @param string $tag The name of the action to be executed.
- @param mixed $arg,... Optional additional arguments which are passed on to the functions hooked to the action.
- @return null Will return null if $tag does not exist
remove_action 从指定动作钩子中删除函数。
- @access public
- @since 0.1
- @param string $tag The action hook to which the function to be removed is hooked.
- @param callback $function_to_remove The name of the function which should be removed.
- @param int $priority optional The priority of the function (default: 10).
- @return boolean Whether the function is removed.
has_action 检查是否为钩子注册了任何动作。
- @access public
- @since 0.1
- @param string $tag The name of the action hook.
- @param callback $function_to_check optional.
- @return mixed If $function_to_check is omitted, returns boolean for whether the hook has anything registered.
When checking a specific function, the priority of that hook is returned, or false if the function is not attached.
When using the $function_to_check argument, this function may return a non-boolean value that evaluates to false (e.g.) 0, so use the === operator for testing the return value.
did_action 获取动作被触发的次数。
- @access public
- @since 0.1
- @param string $tag The name of the action hook.
- @return int The number of times action hook <tt>$tag</tt> is fired
过滤器
add_filter 将函数或方法连接到特定的过滤器动作。
- @access public
- @since 0.1
- @param string $tag The name of the filter to hook the $function_to_add to.
- @param callback $function_to_add The name of the function to be called when the filter is applied.
- @param int $priority optional. Used to specify the order in which the functions associated with a particular action are executed (default: 10). Lower numbers correspond with earlier execution, and functions with the same priority are executed in the order in which they were added to the action.
- @param int $accepted_args optional. The number of arguments the function accept (default 1).
- @return boolean true
remove_filter 从指定过滤器钩子中删除函数。
- @access public
- @since 0.1
- @param string $tag The filter hook to which the function to be removed is hooked.
- @param callback $function_to_remove The name of the function which should be removed.
- @param int $priority optional. The priority of the function (default: 10).
- @param int $accepted_args optional. The number of arguments the function accepts (default: 1).
- @return boolean Whether the function existed before it was removed.
has_filter 检查是否为钩子注册了任何过滤器。
- @access public
- @since 0.1
- @param string $tag The name of the filter hook.
- @param callback $function_to_check optional.
- @return mixed If $function_to_check is omitted, returns boolean for whether the hook has anything registered.
When checking a specific function, the priority of that hook is returned, or false if the function is not attached.
When using the $function_to_check argument, this function may return a non-boolean value that evaluates to false (e.g.) 0, so use the === operator for testing the return value.
apply_filters 调用添加到过滤器钩子的函数。
- @access public
- @since 0.1
- @param string $tag The name of the filter hook.
- @param mixed $value The value on which the filters hooked to <tt>$tag</tt> are applied on.
- @param mixed $var,... Additional variables passed to the functions hooked to <tt>$tag</tt>.
- @return mixed The filtered value after all hooked functions are applied to it.
还有一些其他方法,但这些都是您将主要使用的方法:)
下载
您还可以通过运行以下命令使用Git克隆项目:
$ git clone git://github.com/KTGWKenta/PHP-Hooks.git
许可证
由于此类是从WordPress插件API派生出来的,因此许可证也是GPL https://gnu.ac.cn/licenses/gpl.html