bainternet/php-hooks

WordPress过滤器钩子系统的分支,将其封装成类,以便移植到任何基于PHP的系统

1.0.0 2015-09-07 12:11 UTC

This package is not auto-updated.

Last update: 2024-09-23 12:11:50 UTC


README

PHP Hooks类是WordPress过滤器钩子系统的分支,将其封装成类以便移植到任何基于PHP的系统

  • 此类主要基于WordPress插件API,大部分(如果不是全部)的代码都来自那里。

前往http://bainternet.github.io/PHP-Hooks/获取更多信息

如何使用?

很简单,将类文件包含在您的应用程序引导文件(设置/加载/配置或您叫它什么)中,然后使用全局$hooks开始绑定您的过滤器钩子。例如:

include_once('php-hooks.php');
global $hooks;
$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">';
global $hooks;
$hooks->do_action('header_action');
echo '</div>';

您的输出将是:

<div id="extra_header">this came from a hooked function</div>

方法

ACTIONS

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

FILTERS

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.

还有一些其他方法,但这些都是您将使用的主要方法:)

下载

您可以以ziptar格式下载此项目

您也可以通过运行以下命令使用Git克隆项目:

$ git clone git://github.com/bainternet/PHP-Hooks.git

许可证

由于此类是从WordPress插件API派生出来的,因此许可证也是GPL https://gnu.ac.cn/licenses/gpl.html

Analytics