mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-16 15:46:04 +01:00
has_action and has_filter. see #5231
git-svn-id: http://svn.automattic.com/wordpress/trunk@6320 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
902cc8e985
commit
1e320a469e
@ -329,10 +329,8 @@ function get_admin_page_title() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function get_plugin_page_hook( $plugin_page, $parent_page ) {
|
function get_plugin_page_hook( $plugin_page, $parent_page ) {
|
||||||
global $wp_filter;
|
|
||||||
|
|
||||||
$hook = get_plugin_page_hookname( $plugin_page, $parent_page );
|
$hook = get_plugin_page_hookname( $plugin_page, $parent_page );
|
||||||
if ( isset( $wp_filter[$hook] ))
|
if ( has_action($hook) )
|
||||||
return $hook;
|
return $hook;
|
||||||
else
|
else
|
||||||
return null;
|
return null;
|
||||||
|
@ -238,8 +238,7 @@ class WP {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// query_string filter deprecated. Use request filter instead.
|
// query_string filter deprecated. Use request filter instead.
|
||||||
global $wp_filter;
|
if ( has_filter('query_string') ) { // Don't bother filtering and parsing if no plugins are hooked in.
|
||||||
if ( isset($wp_filter['query_string']) ) { // Don't bother filtering and parsing if no plugins are hooked in.
|
|
||||||
$this->query_string = apply_filters('query_string', $this->query_string);
|
$this->query_string = apply_filters('query_string', $this->query_string);
|
||||||
parse_str($this->query_string, $this->query_vars);
|
parse_str($this->query_string, $this->query_vars);
|
||||||
}
|
}
|
||||||
|
@ -78,6 +78,35 @@ function add_filter($tag, $function_to_add, $priority = 10, $accepted_args = 1)
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check if any filter has been registered for a hook. Optionally returns the priority on that hook for the specified function.
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage Plugin
|
||||||
|
* @since 2.4
|
||||||
|
* @global array $wp_filter Stores all of the filters
|
||||||
|
*
|
||||||
|
* @param string $tag The name of the filter hook.
|
||||||
|
* @param callback $function_to_check optional. If specified, return the priority of that function on this hook or false if not attached.
|
||||||
|
* @return int|boolean
|
||||||
|
*/
|
||||||
|
function has_filter($tag, $function_to_check = false) {
|
||||||
|
global $wp_filter;
|
||||||
|
|
||||||
|
$has = !empty($wp_filter[$tag]);
|
||||||
|
if ( false === $function_to_check || false == $has )
|
||||||
|
return $has;
|
||||||
|
|
||||||
|
if ( !$idx = _wp_filter_build_unique_id($tag, $function_to_check, false, 'filter') )
|
||||||
|
return false;
|
||||||
|
|
||||||
|
foreach ( array_keys($wp_filter[$tag]) as $priority ) {
|
||||||
|
if ( isset($wp_filter[$tag][$priority][$idx]) )
|
||||||
|
return $priority;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Call the functions added to a filter hook.
|
* Call the functions added to a filter hook.
|
||||||
*
|
*
|
||||||
@ -180,6 +209,8 @@ function remove_filter($tag, $function_to_remove, $priority = 10, $accepted_args
|
|||||||
|
|
||||||
if ( true === $r) {
|
if ( true === $r) {
|
||||||
unset($GLOBALS['wp_filter'][$tag][$priority][$function_to_remove]);
|
unset($GLOBALS['wp_filter'][$tag][$priority][$function_to_remove]);
|
||||||
|
if ( empty($GLOBALS['wp_filter'][$tag][$priority]) )
|
||||||
|
unset($GLOBALS['wp_filter'][$tag][$priority]);
|
||||||
unset($GLOBALS['merged_filters'][$tag]);
|
unset($GLOBALS['merged_filters'][$tag]);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -325,8 +356,6 @@ function did_action($tag) {
|
|||||||
* @see do_action() This function is identical, but the arguments passed to
|
* @see do_action() This function is identical, but the arguments passed to
|
||||||
* the functions hooked to <tt>$tag</tt> are supplied using an array.
|
* the functions hooked to <tt>$tag</tt> are supplied using an array.
|
||||||
*
|
*
|
||||||
* @uses merge_filters()
|
|
||||||
*
|
|
||||||
* @package WordPress
|
* @package WordPress
|
||||||
* @subpackage Plugin
|
* @subpackage Plugin
|
||||||
* @since 2.1
|
* @since 2.1
|
||||||
@ -376,6 +405,35 @@ function do_action_ref_array($tag, $args) {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check if any action has been registered for a hook. Optionally returns the priority on that hook for the specified function.
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage Plugin
|
||||||
|
* @since 2.4
|
||||||
|
* @global array $wp_action Stores all of the actions
|
||||||
|
*
|
||||||
|
* @param string $tag The name of the action hook.
|
||||||
|
* @param callback $function_to_check optional. If specified, return the priority of that function on this hook or false if not attached.
|
||||||
|
* @return int|boolean
|
||||||
|
*/
|
||||||
|
function has_action($tag, $function_to_check = false) {
|
||||||
|
global $wp_action;
|
||||||
|
|
||||||
|
$has = !empty($wp_action[$tag]);
|
||||||
|
if ( false === $function_to_check || false == $has )
|
||||||
|
return $has;
|
||||||
|
|
||||||
|
if ( !$idx = _wp_filter_build_unique_id($tag, $function_to_check, false, 'action') )
|
||||||
|
return false;
|
||||||
|
|
||||||
|
foreach ( array_keys($wp_action[$tag]) as $priority ) {
|
||||||
|
if ( isset($wp_action[$tag][$priority][$idx]) )
|
||||||
|
return $priority;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Removes a function from a specified action hook.
|
* Removes a function from a specified action hook.
|
||||||
*
|
*
|
||||||
@ -383,8 +441,6 @@ function do_action_ref_array($tag, $args) {
|
|||||||
* method can be used to remove default functions attached to a specific filter
|
* method can be used to remove default functions attached to a specific filter
|
||||||
* hook and possibly replace them with a substitute.
|
* hook and possibly replace them with a substitute.
|
||||||
*
|
*
|
||||||
* @uses remove_filter() Uses remove_filter to remove actions added.
|
|
||||||
*
|
|
||||||
* @package WordPress
|
* @package WordPress
|
||||||
* @subpackage Plugin
|
* @subpackage Plugin
|
||||||
* @since 1.5
|
* @since 1.5
|
||||||
@ -402,6 +458,8 @@ function remove_action($tag, $function_to_remove, $priority = 10, $accepted_args
|
|||||||
|
|
||||||
if ( true === $r) {
|
if ( true === $r) {
|
||||||
unset($GLOBALS['wp_action'][$tag][$priority][$function_to_remove]);
|
unset($GLOBALS['wp_action'][$tag][$priority][$function_to_remove]);
|
||||||
|
if ( empty($GLOBALS['wp_action'][$tag][$priority]) )
|
||||||
|
unset($GLOBALS['wp_action'][$tag][$priority]);
|
||||||
unset($GLOBALS['merged_actions'][$tag]);
|
unset($GLOBALS['merged_actions'][$tag]);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -513,7 +571,7 @@ function register_deactivation_hook($file, $function) {
|
|||||||
* @global array $wp_filter Storage for all of the filters and actions
|
* @global array $wp_filter Storage for all of the filters and actions
|
||||||
* @param string $tag Used in counting how many hooks were applied
|
* @param string $tag Used in counting how many hooks were applied
|
||||||
* @param string|array $function Used for creating unique id
|
* @param string|array $function Used for creating unique id
|
||||||
* @param int $priority Used in counting how many hooks were applied
|
* @param int|bool $priority Used in counting how many hooks were applied. If === false and $function is an object reference, we return the unique id only if it already has one, false otherwise.
|
||||||
* @param string $type filter or action
|
* @param string $type filter or action
|
||||||
* @return string Unique ID for usage as array key
|
* @return string Unique ID for usage as array key
|
||||||
*/
|
*/
|
||||||
@ -528,6 +586,8 @@ function _wp_filter_build_unique_id($tag, $function, $priority, $type)
|
|||||||
else if (is_object($function[0]) ) {
|
else if (is_object($function[0]) ) {
|
||||||
$obj_idx = get_class($function[0]).$function[1];
|
$obj_idx = get_class($function[0]).$function[1];
|
||||||
if ( !isset($function[0]->wp_filter_id) ) {
|
if ( !isset($function[0]->wp_filter_id) ) {
|
||||||
|
if ( false === $priority )
|
||||||
|
return false;
|
||||||
if ( 'filter' == $type )
|
if ( 'filter' == $type )
|
||||||
$count = count((array)$wp_filter[$tag][$priority]);
|
$count = count((array)$wp_filter[$tag][$priority]);
|
||||||
else
|
else
|
||||||
|
@ -20,7 +20,7 @@ function wp_unregister_GLOBALS() {
|
|||||||
|
|
||||||
wp_unregister_GLOBALS();
|
wp_unregister_GLOBALS();
|
||||||
|
|
||||||
unset( $wp_filter, $cache_lastcommentmodified, $cache_lastpostdate );
|
unset( $wp_filter, $wp_action, $cache_lastcommentmodified, $cache_lastpostdate );
|
||||||
|
|
||||||
if ( ! isset($blog_id) )
|
if ( ! isset($blog_id) )
|
||||||
$blog_id = 1;
|
$blog_id = 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user