当前位置: 首页>>代码示例>>PHP>>正文


PHP WP_Mock::onActionAdded方法代码示例

本文整理汇总了PHP中WP_Mock::onActionAdded方法的典型用法代码示例。如果您正苦于以下问题:PHP WP_Mock::onActionAdded方法的具体用法?PHP WP_Mock::onActionAdded怎么用?PHP WP_Mock::onActionAdded使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在WP_Mock的用法示例。


在下文中一共展示了WP_Mock::onActionAdded方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: add_action

 /**
  * Hooks a function on to a specific action.
  *
  * Actions are the hooks that the WordPress core launches at specific points
  * during execution, or when specific events occur. Plugins can specify that
  * one or more of its PHP functions are executed at these points, using the
  * Action API.
  *
  * @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).
  */
 function add_action($tag, $function_to_add, $priority = 10, $accepted_args = 1)
 {
     \WP_Mock::onActionAdded($tag)->react($function_to_add, (int) $priority, (int) $accepted_args);
 }
开发者ID:lloc,项目名称:wp_mock,代码行数:17,代码来源:function-mocks.php

示例2: addAction

 public static function addAction($tag, $fn, $priority = 10, $acceptedArgs = 1)
 {
     if (self::$type === HookMock::WP_MOCK) {
         \WP_Mock::onActionAdded($tag)->react($fn, (int) $priority, (int) $acceptedArgs);
     }
     if (self::$type === HookMock::TRUE_HOOKS) {
         self::$hooks['actions'][$tag][] = ['fn' => $fn, 'priority' => $priority, 'args' => $acceptedArgs];
     }
 }
开发者ID:versionpress,项目名称:versionpress,代码行数:9,代码来源:HookMock.php


注:本文中的WP_Mock::onActionAdded方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。