本文整理匯總了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);
}
示例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];
}
}