2006-06-19 22:03:24 -04:00
|
|
|
<?php
|
2007-10-19 13:45:08 -04:00
|
|
|
/**
|
|
|
|
* The plugin API is located in this file, which allows for creating actions
|
|
|
|
* and filters and hooking functions, and methods. The functions or methods will
|
|
|
|
* then be run when the action or filter is called.
|
|
|
|
*
|
|
|
|
* The API callback examples reference functions, but can be methods of classes.
|
|
|
|
* To hook methods, you'll need to pass an array one of two ways.
|
|
|
|
*
|
|
|
|
* Any of the syntaxes explained in the PHP documentation for the
|
2007-12-06 00:56:38 -05:00
|
|
|
* {@link http://us2.php.net/manual/en/language.pseudo-types.php#language.types.callback 'callback'}
|
|
|
|
* type are valid.
|
2007-10-19 13:45:08 -04:00
|
|
|
*
|
2008-08-30 17:23:43 -04:00
|
|
|
* Also see the {@link http://codex.wordpress.org/Plugin_API Plugin API} for
|
|
|
|
* more information and examples on how to use a lot of these functions.
|
2007-10-19 13:45:08 -04:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Plugin
|
|
|
|
* @since 1.5
|
|
|
|
*/
|
2006-06-19 22:03:24 -04:00
|
|
|
|
2007-03-28 22:45:34 -04:00
|
|
|
/**
|
2008-08-07 19:39:27 -04:00
|
|
|
* Hooks a function or method to a specific filter action.
|
2007-09-03 19:32:58 -04:00
|
|
|
*
|
2007-03-28 22:45:34 -04:00
|
|
|
* Filters are the hooks that WordPress launches to modify text of various types
|
2007-09-03 19:32:58 -04:00
|
|
|
* before adding it to the database or sending it to the browser screen. Plugins
|
|
|
|
* can specify that one or more of its PHP functions is executed to
|
2007-03-28 22:45:34 -04:00
|
|
|
* modify specific types of text at these times, using the Filter API.
|
2007-10-19 13:45:08 -04:00
|
|
|
*
|
2008-08-30 17:23:43 -04:00
|
|
|
* To use the API, the following code should be used to bind a callback to the
|
|
|
|
* filter.
|
|
|
|
*
|
2007-10-19 13:45:08 -04:00
|
|
|
* <code>
|
|
|
|
* function example_hook($example) { echo $example; }
|
|
|
|
* add_filter('example_filter', 'example_hook');
|
|
|
|
* </code>
|
|
|
|
*
|
2008-08-30 17:23:43 -04:00
|
|
|
* In WordPress 1.5.1+, hooked functions can take extra arguments that are set
|
|
|
|
* when the matching do_action() or apply_filters() call is run. The
|
|
|
|
* $accepted_args allow for calling functions only when the number of args
|
|
|
|
* match. Hooked functions can take extra arguments that are set when the
|
|
|
|
* matching do_action() or apply_filters() call is run. For example, the action
|
|
|
|
* comment_id_not_found will pass any functions that hook onto it the ID of the
|
|
|
|
* requested comment.
|
2007-10-19 13:45:08 -04:00
|
|
|
*
|
2008-08-30 17:23:43 -04:00
|
|
|
* <strong>Note:</strong> the function will return true no matter if the
|
|
|
|
* function was hooked fails or not. There are no checks for whether the
|
|
|
|
* function exists beforehand and no checks to whether the <tt>$function_to_add
|
|
|
|
* is even a string. It is up to you to take care and this is done for
|
|
|
|
* optimization purposes, so everything is as quick as possible.
|
2007-10-19 13:45:08 -04:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Plugin
|
2007-12-06 00:56:38 -05:00
|
|
|
* @since 0.71
|
2007-10-19 13:45:08 -04:00
|
|
|
* @global array $wp_filter Stores all of the filters added in the form of
|
2009-06-20 14:14:46 -04:00
|
|
|
* wp_filter['tag']['array of priorities']['array of functions serialized']['array of ['array (functions, accepted_args)']']
|
2007-10-19 13:45:08 -04:00
|
|
|
* @global array $merged_filters Tracks the tags that need to be merged for later. If the hook is added, it doesn't need to run through that process.
|
2007-03-28 22:45:34 -04:00
|
|
|
*
|
2008-08-30 17:23:43 -04:00
|
|
|
* @param string $tag The name of the filter to hook the $function_to_add to.
|
2007-03-28 22:45:34 -04:00
|
|
|
* @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.
|
2007-10-19 13:45:08 -04:00
|
|
|
* @param int $accepted_args optional. The number of arguments the function accept (default 1).
|
|
|
|
* @return boolean true
|
2007-03-28 22:45:34 -04:00
|
|
|
*/
|
2006-06-19 22:03:24 -04:00
|
|
|
function add_filter($tag, $function_to_add, $priority = 10, $accepted_args = 1) {
|
2007-04-02 03:03:38 -04:00
|
|
|
global $wp_filter, $merged_filters;
|
2006-06-19 22:03:24 -04:00
|
|
|
|
2007-11-07 20:05:43 -05:00
|
|
|
$idx = _wp_filter_build_unique_id($tag, $function_to_add, $priority);
|
2007-10-19 13:45:08 -04:00
|
|
|
$wp_filter[$tag][$priority][$idx] = array('function' => $function_to_add, 'accepted_args' => $accepted_args);
|
2007-04-02 03:03:38 -04:00
|
|
|
unset( $merged_filters[ $tag ] );
|
2006-06-19 22:03:24 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2007-11-06 23:30:11 -05:00
|
|
|
/**
|
2008-08-07 19:39:27 -04:00
|
|
|
* Check if any filter has been registered for a hook.
|
2007-12-06 00:56:38 -05:00
|
|
|
*
|
2007-11-06 23:30:11 -05:00
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Plugin
|
2008-01-09 12:48:00 -05:00
|
|
|
* @since 2.5
|
2007-11-06 23:30:11 -05:00
|
|
|
* @global array $wp_filter Stores all of the filters
|
|
|
|
*
|
|
|
|
* @param string $tag The name of the filter hook.
|
2011-12-13 18:45:31 -05:00
|
|
|
* @param callback $function_to_check optional. If specified, return the priority of that function on this hook or false if not attached.
|
2007-12-06 00:56:38 -05:00
|
|
|
* @return int|boolean Optionally returns the priority on that hook for the specified function.
|
2007-11-06 23:30:11 -05:00
|
|
|
*/
|
|
|
|
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;
|
|
|
|
|
2007-11-07 20:05:43 -05:00
|
|
|
if ( !$idx = _wp_filter_build_unique_id($tag, $function_to_check, false) )
|
2007-11-06 23:30:11 -05:00
|
|
|
return false;
|
|
|
|
|
2008-08-06 16:31:54 -04:00
|
|
|
foreach ( (array) array_keys($wp_filter[$tag]) as $priority ) {
|
2007-11-06 23:30:11 -05:00
|
|
|
if ( isset($wp_filter[$tag][$priority][$idx]) )
|
|
|
|
return $priority;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-03-28 22:45:34 -04:00
|
|
|
/**
|
2008-08-07 19:39:27 -04:00
|
|
|
* Call the functions added to a filter hook.
|
2007-09-03 19:32:58 -04:00
|
|
|
*
|
2008-08-30 17:23:43 -04:00
|
|
|
* The callback functions attached to filter hook $tag are invoked by calling
|
|
|
|
* this function. This function can be used to create a new filter hook by
|
|
|
|
* simply calling this function with the name of the new hook specified using
|
|
|
|
* the $tag parameter.
|
2007-10-19 13:45:08 -04:00
|
|
|
*
|
|
|
|
* The function allows for additional arguments to be added and passed to hooks.
|
|
|
|
* <code>
|
|
|
|
* function example_hook($string, $arg1, $arg2)
|
|
|
|
* {
|
|
|
|
* //Do stuff
|
2007-12-06 00:56:38 -05:00
|
|
|
* return $string;
|
2007-10-19 13:45:08 -04:00
|
|
|
* }
|
|
|
|
* $value = apply_filters('example_filter', 'filter me', 'arg1', 'arg2');
|
|
|
|
* </code>
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Plugin
|
2007-12-06 00:56:38 -05:00
|
|
|
* @since 0.71
|
2007-10-19 13:45:08 -04:00
|
|
|
* @global array $wp_filter Stores all of the filters
|
2008-11-15 13:10:35 -05:00
|
|
|
* @global array $merged_filters Merges the filter hooks using this function.
|
2007-12-06 00:56:38 -05:00
|
|
|
* @global array $wp_current_filter stores the list of current filters with the current one last
|
2007-10-19 13:45:08 -04:00
|
|
|
*
|
2007-03-28 22:45:34 -04:00
|
|
|
* @param string $tag The name of the filter hook.
|
2007-12-06 00:56:38 -05:00
|
|
|
* @param mixed $value The value on which the filters hooked to <tt>$tag</tt> are applied on.
|
2007-03-28 22:45:34 -04:00
|
|
|
* @param mixed $var,... Additional variables passed to the functions hooked to <tt>$tag</tt>.
|
2007-12-06 00:56:38 -05:00
|
|
|
* @return mixed The filtered value after all hooked functions are applied to it.
|
2007-03-28 22:45:34 -04:00
|
|
|
*/
|
2007-10-19 13:45:08 -04:00
|
|
|
function apply_filters($tag, $value) {
|
2007-11-06 16:38:04 -05:00
|
|
|
global $wp_filter, $merged_filters, $wp_current_filter;
|
|
|
|
|
2007-11-07 20:05:43 -05:00
|
|
|
$args = array();
|
2006-06-19 22:03:24 -04:00
|
|
|
|
2007-11-06 13:31:43 -05:00
|
|
|
// Do 'all' actions first
|
|
|
|
if ( isset($wp_filter['all']) ) {
|
2011-04-14 14:05:30 -04:00
|
|
|
$wp_current_filter[] = $tag;
|
2007-11-07 20:05:43 -05:00
|
|
|
$args = func_get_args();
|
2007-12-06 00:56:38 -05:00
|
|
|
_wp_call_all_hook($args);
|
2007-11-06 13:31:43 -05:00
|
|
|
}
|
2006-06-19 22:03:24 -04:00
|
|
|
|
2007-11-06 16:38:04 -05:00
|
|
|
if ( !isset($wp_filter[$tag]) ) {
|
2011-04-14 14:05:30 -04:00
|
|
|
if ( isset($wp_filter['all']) )
|
|
|
|
array_pop($wp_current_filter);
|
2007-10-19 13:45:08 -04:00
|
|
|
return $value;
|
2007-11-06 16:38:04 -05:00
|
|
|
}
|
2006-06-19 22:03:24 -04:00
|
|
|
|
2011-04-14 14:05:30 -04:00
|
|
|
if ( !isset($wp_filter['all']) )
|
|
|
|
$wp_current_filter[] = $tag;
|
|
|
|
|
2007-11-06 13:31:43 -05:00
|
|
|
// Sort
|
|
|
|
if ( !isset( $merged_filters[ $tag ] ) ) {
|
2007-12-06 00:56:38 -05:00
|
|
|
ksort($wp_filter[$tag]);
|
2007-11-06 13:31:43 -05:00
|
|
|
$merged_filters[ $tag ] = true;
|
|
|
|
}
|
|
|
|
|
2007-04-02 03:46:05 -04:00
|
|
|
reset( $wp_filter[ $tag ] );
|
|
|
|
|
2007-11-07 20:05:43 -05:00
|
|
|
if ( empty($args) )
|
|
|
|
$args = func_get_args();
|
2007-02-27 20:09:20 -05:00
|
|
|
|
2007-11-06 13:31:43 -05:00
|
|
|
do {
|
2007-02-27 20:09:20 -05:00
|
|
|
foreach( (array) current($wp_filter[$tag]) as $the_ )
|
|
|
|
if ( !is_null($the_['function']) ){
|
2007-10-19 13:45:08 -04:00
|
|
|
$args[1] = $value;
|
|
|
|
$value = call_user_func_array($the_['function'], array_slice($args, 1, (int) $the_['accepted_args']));
|
2006-06-19 22:03:24 -04:00
|
|
|
}
|
2007-02-27 20:09:20 -05:00
|
|
|
|
2007-08-08 13:41:46 -04:00
|
|
|
} while ( next($wp_filter[$tag]) !== false );
|
2008-02-05 01:47:27 -05:00
|
|
|
|
2007-11-06 16:38:04 -05:00
|
|
|
array_pop( $wp_current_filter );
|
2010-03-18 17:24:07 -04:00
|
|
|
|
|
|
|
return $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute functions hooked on a specific filter hook, specifying arguments in an array.
|
|
|
|
*
|
|
|
|
* @see apply_filters() This function is identical, but the arguments passed to the
|
|
|
|
* functions hooked to <tt>$tag</tt> are supplied using an array.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Plugin
|
2010-03-26 15:13:36 -04:00
|
|
|
* @since 3.0.0
|
2010-03-18 17:24:07 -04:00
|
|
|
* @global array $wp_filter Stores all of the filters
|
|
|
|
* @global array $merged_filters Merges the filter hooks using this function.
|
|
|
|
* @global array $wp_current_filter stores the list of current filters with the current one last
|
|
|
|
*
|
|
|
|
* @param string $tag The name of the filter hook.
|
|
|
|
* @param array $args The arguments supplied to the functions hooked to <tt>$tag</tt>
|
|
|
|
* @return mixed The filtered value after all hooked functions are applied to it.
|
|
|
|
*/
|
|
|
|
function apply_filters_ref_array($tag, $args) {
|
|
|
|
global $wp_filter, $merged_filters, $wp_current_filter;
|
|
|
|
|
|
|
|
// Do 'all' actions first
|
|
|
|
if ( isset($wp_filter['all']) ) {
|
2011-04-14 14:05:30 -04:00
|
|
|
$wp_current_filter[] = $tag;
|
2010-03-18 17:24:07 -04:00
|
|
|
$all_args = func_get_args();
|
|
|
|
_wp_call_all_hook($all_args);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !isset($wp_filter[$tag]) ) {
|
2011-04-14 14:05:30 -04:00
|
|
|
if ( isset($wp_filter['all']) )
|
|
|
|
array_pop($wp_current_filter);
|
2010-03-31 17:39:18 -04:00
|
|
|
return $args[0];
|
2010-03-18 17:24:07 -04:00
|
|
|
}
|
|
|
|
|
2011-04-14 14:05:30 -04:00
|
|
|
if ( !isset($wp_filter['all']) )
|
|
|
|
$wp_current_filter[] = $tag;
|
|
|
|
|
2010-03-18 17:24:07 -04:00
|
|
|
// Sort
|
|
|
|
if ( !isset( $merged_filters[ $tag ] ) ) {
|
|
|
|
ksort($wp_filter[$tag]);
|
|
|
|
$merged_filters[ $tag ] = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
reset( $wp_filter[ $tag ] );
|
|
|
|
|
|
|
|
do {
|
|
|
|
foreach( (array) current($wp_filter[$tag]) as $the_ )
|
|
|
|
if ( !is_null($the_['function']) )
|
2010-03-31 17:39:18 -04:00
|
|
|
$args[0] = call_user_func_array($the_['function'], array_slice($args, 0, (int) $the_['accepted_args']));
|
2010-03-18 17:24:07 -04:00
|
|
|
|
|
|
|
} while ( next($wp_filter[$tag]) !== false );
|
|
|
|
|
|
|
|
array_pop( $wp_current_filter );
|
2007-02-27 20:09:20 -05:00
|
|
|
|
2010-03-31 17:39:18 -04:00
|
|
|
return $args[0];
|
2006-06-19 22:03:24 -04:00
|
|
|
}
|
|
|
|
|
2007-03-28 22:45:34 -04:00
|
|
|
/**
|
2008-08-07 19:39:27 -04:00
|
|
|
* Removes a function from a specified filter hook.
|
2007-09-03 19:32:58 -04:00
|
|
|
*
|
|
|
|
* This function removes a function attached to a specified filter hook. This
|
|
|
|
* method can be used to remove default functions attached to a specific filter
|
2007-03-28 22:45:34 -04:00
|
|
|
* hook and possibly replace them with a substitute.
|
2007-10-19 13:45:08 -04:00
|
|
|
*
|
2008-08-07 19:39:27 -04:00
|
|
|
* To remove a hook, the $function_to_remove and $priority arguments must match
|
|
|
|
* when the hook was added. This goes for both filters and actions. No warning
|
2007-10-19 13:45:08 -04:00
|
|
|
* will be given on removal failure.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Plugin
|
2007-12-06 00:56:38 -05:00
|
|
|
* @since 1.2
|
2007-10-19 13:45:08 -04:00
|
|
|
*
|
2007-03-28 22:45:34 -04:00
|
|
|
* @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).
|
2011-09-05 15:08:15 -04:00
|
|
|
* @param int $accepted_args optional. The number of arguments the function accepts (default: 1).
|
2007-10-19 13:45:08 -04:00
|
|
|
* @return boolean Whether the function existed before it was removed.
|
2007-03-28 22:45:34 -04:00
|
|
|
*/
|
2006-06-19 22:03:24 -04:00
|
|
|
function remove_filter($tag, $function_to_remove, $priority = 10, $accepted_args = 1) {
|
2007-11-07 20:05:43 -05:00
|
|
|
$function_to_remove = _wp_filter_build_unique_id($tag, $function_to_remove, $priority);
|
2006-06-19 22:03:24 -04:00
|
|
|
|
2007-05-04 19:27:12 -04:00
|
|
|
$r = isset($GLOBALS['wp_filter'][$tag][$priority][$function_to_remove]);
|
2007-02-27 20:09:20 -05:00
|
|
|
|
2007-11-06 13:31:43 -05:00
|
|
|
if ( true === $r) {
|
|
|
|
unset($GLOBALS['wp_filter'][$tag][$priority][$function_to_remove]);
|
2007-11-06 23:30:11 -05:00
|
|
|
if ( empty($GLOBALS['wp_filter'][$tag][$priority]) )
|
|
|
|
unset($GLOBALS['wp_filter'][$tag][$priority]);
|
2007-11-06 13:31:43 -05:00
|
|
|
unset($GLOBALS['merged_filters'][$tag]);
|
|
|
|
}
|
2007-05-04 19:27:12 -04:00
|
|
|
|
|
|
|
return $r;
|
2006-06-19 22:03:24 -04:00
|
|
|
}
|
|
|
|
|
2008-08-17 07:15:38 -04:00
|
|
|
/**
|
|
|
|
* Remove all of the hooks from a filter.
|
|
|
|
*
|
|
|
|
* @since 2.7
|
|
|
|
*
|
|
|
|
* @param string $tag The filter to remove hooks from.
|
|
|
|
* @param int $priority The priority number to remove.
|
|
|
|
* @return bool True when finished.
|
|
|
|
*/
|
|
|
|
function remove_all_filters($tag, $priority = false) {
|
2008-11-15 13:10:35 -05:00
|
|
|
global $wp_filter, $merged_filters;
|
2008-08-17 07:15:38 -04:00
|
|
|
|
|
|
|
if( isset($wp_filter[$tag]) ) {
|
2010-03-03 01:41:19 -05:00
|
|
|
if( false !== $priority && isset($wp_filter[$tag][$priority]) )
|
2011-11-21 10:43:57 -05:00
|
|
|
unset($wp_filter[$tag][$priority]);
|
2008-08-17 07:15:38 -04:00
|
|
|
else
|
2011-11-21 10:43:57 -05:00
|
|
|
unset($wp_filter[$tag]);
|
2008-08-17 07:15:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if( isset($merged_filters[$tag]) )
|
|
|
|
unset($merged_filters[$tag]);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2007-11-06 13:31:43 -05:00
|
|
|
|
2007-11-06 16:38:04 -05:00
|
|
|
/**
|
2008-08-30 17:23:43 -04:00
|
|
|
* Retrieve the name of the current filter or action.
|
2007-12-06 00:56:38 -05:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Plugin
|
2008-01-09 12:48:00 -05:00
|
|
|
* @since 2.5
|
2007-12-06 00:56:38 -05:00
|
|
|
*
|
|
|
|
* @return string Hook name of the current filter or action.
|
2007-11-06 16:38:04 -05:00
|
|
|
*/
|
|
|
|
function current_filter() {
|
|
|
|
global $wp_current_filter;
|
|
|
|
return end( $wp_current_filter );
|
|
|
|
}
|
|
|
|
|
2007-03-28 22:45:34 -04:00
|
|
|
/**
|
2008-08-07 19:39:27 -04:00
|
|
|
* Hooks a function on to a specific action.
|
2007-09-03 19:32:58 -04:00
|
|
|
*
|
|
|
|
* Actions are the hooks that the WordPress core launches at specific points
|
2007-03-28 22:45:34 -04:00
|
|
|
* during execution, or when specific events occur. Plugins can specify that
|
2007-09-03 19:32:58 -04:00
|
|
|
* one or more of its PHP functions are executed at these points, using the
|
2007-03-28 22:45:34 -04:00
|
|
|
* Action API.
|
2007-09-03 19:32:58 -04:00
|
|
|
*
|
2007-10-19 13:45:08 -04:00
|
|
|
* @uses add_filter() Adds an action. Parameter list and functionality are the same.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Plugin
|
2007-12-06 00:56:38 -05:00
|
|
|
* @since 1.2
|
2007-10-19 13:45:08 -04:00
|
|
|
*
|
2008-08-30 17:23:43 -04:00
|
|
|
* @param string $tag The name of the action to which the $function_to_add is hooked.
|
2007-10-19 13:45:08 -04:00
|
|
|
* @param callback $function_to_add The name of the function you wish to be called.
|
2007-03-28 22:45:34 -04:00
|
|
|
* @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.
|
2007-10-19 13:45:08 -04:00
|
|
|
* @param int $accepted_args optional. The number of arguments the function accept (default 1).
|
2007-03-28 22:45:34 -04:00
|
|
|
*/
|
2006-06-19 22:03:24 -04:00
|
|
|
function add_action($tag, $function_to_add, $priority = 10, $accepted_args = 1) {
|
2007-12-06 00:56:38 -05:00
|
|
|
return add_filter($tag, $function_to_add, $priority, $accepted_args);
|
2006-06-19 22:03:24 -04:00
|
|
|
}
|
|
|
|
|
2007-03-28 22:45:34 -04:00
|
|
|
/**
|
2008-08-07 19:39:27 -04:00
|
|
|
* Execute functions hooked on a specific action hook.
|
2007-09-03 19:32:58 -04:00
|
|
|
*
|
2008-08-30 17:23:43 -04:00
|
|
|
* This function invokes all functions attached to action hook $tag. It is
|
|
|
|
* possible to create new action hooks by simply calling this function,
|
2007-03-28 22:45:34 -04:00
|
|
|
* specifying the name of the new hook using the <tt>$tag</tt> parameter.
|
2007-10-19 13:45:08 -04:00
|
|
|
*
|
2008-08-30 17:23:43 -04:00
|
|
|
* You can pass extra arguments to the hooks, much like you can with
|
|
|
|
* apply_filters().
|
2007-10-19 13:45:08 -04:00
|
|
|
*
|
2008-08-30 17:23:43 -04:00
|
|
|
* @see apply_filters() This function works similar with the exception that
|
|
|
|
* nothing is returned and only the functions or methods are called.
|
2007-10-19 13:45:08 -04:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Plugin
|
2007-12-06 00:56:38 -05:00
|
|
|
* @since 1.2
|
2007-10-19 13:45:08 -04:00
|
|
|
* @global array $wp_filter Stores all of the filters
|
|
|
|
* @global array $wp_actions Increments the amount of times action was triggered.
|
|
|
|
*
|
2007-03-28 22:45:34 -04:00
|
|
|
* @param string $tag The name of the action to be executed.
|
2007-09-03 19:32:58 -04:00
|
|
|
* @param mixed $arg,... Optional additional arguments which are passed on to the functions hooked to the action.
|
2007-10-19 13:45:08 -04:00
|
|
|
* @return null Will return null if $tag does not exist in $wp_filter array
|
2007-03-28 22:45:34 -04:00
|
|
|
*/
|
2006-06-19 22:03:24 -04:00
|
|
|
function do_action($tag, $arg = '') {
|
2007-12-06 00:56:38 -05:00
|
|
|
global $wp_filter, $wp_actions, $merged_filters, $wp_current_filter;
|
2006-12-07 22:45:34 -05:00
|
|
|
|
2009-12-21 03:47:34 -05:00
|
|
|
if ( ! isset($wp_actions) )
|
|
|
|
$wp_actions = array();
|
2010-01-15 17:11:12 -05:00
|
|
|
|
2009-12-21 03:47:34 -05:00
|
|
|
if ( ! isset($wp_actions[$tag]) )
|
|
|
|
$wp_actions[$tag] = 1;
|
2007-05-07 19:22:50 -04:00
|
|
|
else
|
2009-12-21 03:47:34 -05:00
|
|
|
++$wp_actions[$tag];
|
2007-05-07 19:22:50 -04:00
|
|
|
|
2007-11-06 13:31:43 -05:00
|
|
|
// Do 'all' actions first
|
2007-11-07 20:05:43 -05:00
|
|
|
if ( isset($wp_filter['all']) ) {
|
2011-04-14 14:05:30 -04:00
|
|
|
$wp_current_filter[] = $tag;
|
2007-11-07 20:05:43 -05:00
|
|
|
$all_args = func_get_args();
|
2007-12-06 00:56:38 -05:00
|
|
|
_wp_call_all_hook($all_args);
|
2007-11-06 13:31:43 -05:00
|
|
|
}
|
|
|
|
|
2007-11-07 20:05:43 -05:00
|
|
|
if ( !isset($wp_filter[$tag]) ) {
|
2011-04-14 14:05:30 -04:00
|
|
|
if ( isset($wp_filter['all']) )
|
|
|
|
array_pop($wp_current_filter);
|
2006-06-19 22:03:24 -04:00
|
|
|
return;
|
2007-11-06 16:38:04 -05:00
|
|
|
}
|
2007-11-07 20:05:43 -05:00
|
|
|
|
2011-04-14 14:05:30 -04:00
|
|
|
if ( !isset($wp_filter['all']) )
|
|
|
|
$wp_current_filter[] = $tag;
|
|
|
|
|
2007-11-07 20:05:43 -05:00
|
|
|
$args = array();
|
2010-03-11 16:58:17 -05:00
|
|
|
if ( is_array($arg) && 1 == count($arg) && isset($arg[0]) && is_object($arg[0]) ) // array(&$this)
|
2007-11-07 20:05:43 -05:00
|
|
|
$args[] =& $arg[0];
|
|
|
|
else
|
|
|
|
$args[] = $arg;
|
|
|
|
for ( $a = 2; $a < func_num_args(); $a++ )
|
|
|
|
$args[] = func_get_arg($a);
|
|
|
|
|
2007-11-06 13:31:43 -05:00
|
|
|
// Sort
|
2007-11-07 20:05:43 -05:00
|
|
|
if ( !isset( $merged_filters[ $tag ] ) ) {
|
2007-12-06 00:56:38 -05:00
|
|
|
ksort($wp_filter[$tag]);
|
2007-11-07 20:05:43 -05:00
|
|
|
$merged_filters[ $tag ] = true;
|
2007-11-06 13:31:43 -05:00
|
|
|
}
|
|
|
|
|
2007-11-07 20:05:43 -05:00
|
|
|
reset( $wp_filter[ $tag ] );
|
2007-11-06 13:31:43 -05:00
|
|
|
|
|
|
|
do {
|
2007-11-07 20:05:43 -05:00
|
|
|
foreach ( (array) current($wp_filter[$tag]) as $the_ )
|
2007-02-27 20:09:20 -05:00
|
|
|
if ( !is_null($the_['function']) )
|
|
|
|
call_user_func_array($the_['function'], array_slice($args, 0, (int) $the_['accepted_args']));
|
2006-09-12 13:45:23 -04:00
|
|
|
|
2007-11-07 20:05:43 -05:00
|
|
|
} while ( next($wp_filter[$tag]) !== false );
|
2006-12-07 22:45:34 -05:00
|
|
|
|
2007-12-06 00:56:38 -05:00
|
|
|
array_pop($wp_current_filter);
|
2006-12-07 22:45:34 -05:00
|
|
|
}
|
|
|
|
|
2007-03-28 22:45:34 -04:00
|
|
|
/**
|
2011-08-04 12:03:53 -04:00
|
|
|
* Retrieve the number of times an action is fired.
|
2007-10-19 13:45:08 -04:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Plugin
|
|
|
|
* @since 2.1
|
|
|
|
* @global array $wp_actions Increments the amount of times action was triggered.
|
|
|
|
*
|
2007-03-28 22:45:34 -04:00
|
|
|
* @param string $tag The name of the action hook.
|
2007-05-07 19:22:50 -04:00
|
|
|
* @return int The number of times action hook <tt>$tag</tt> is fired
|
2007-03-28 22:45:34 -04:00
|
|
|
*/
|
2006-12-07 22:45:34 -05:00
|
|
|
function did_action($tag) {
|
|
|
|
global $wp_actions;
|
|
|
|
|
2009-12-21 03:47:34 -05:00
|
|
|
if ( ! isset( $wp_actions ) || ! isset( $wp_actions[$tag] ) )
|
2007-05-08 13:59:52 -04:00
|
|
|
return 0;
|
|
|
|
|
2009-12-21 03:47:34 -05:00
|
|
|
return $wp_actions[$tag];
|
2006-09-12 13:45:23 -04:00
|
|
|
}
|
|
|
|
|
2007-03-28 22:45:34 -04:00
|
|
|
/**
|
2008-08-07 19:39:27 -04:00
|
|
|
* Execute functions hooked on a specific action hook, specifying arguments in an array.
|
2007-09-03 19:32:58 -04:00
|
|
|
*
|
2008-08-30 17:23:43 -04:00
|
|
|
* @see do_action() This function is identical, but the arguments passed to the
|
|
|
|
* functions hooked to <tt>$tag</tt> are supplied using an array.
|
2007-10-19 13:45:08 -04:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Plugin
|
|
|
|
* @since 2.1
|
|
|
|
* @global array $wp_filter Stores all of the filters
|
|
|
|
* @global array $wp_actions Increments the amount of times action was triggered.
|
|
|
|
*
|
2007-03-28 22:45:34 -04:00
|
|
|
* @param string $tag The name of the action to be executed.
|
|
|
|
* @param array $args The arguments supplied to the functions hooked to <tt>$tag</tt>
|
2007-10-19 13:45:08 -04:00
|
|
|
* @return null Will return null if $tag does not exist in $wp_filter array
|
2007-03-28 22:45:34 -04:00
|
|
|
*/
|
2006-09-12 13:45:23 -04:00
|
|
|
function do_action_ref_array($tag, $args) {
|
2007-12-06 00:56:38 -05:00
|
|
|
global $wp_filter, $wp_actions, $merged_filters, $wp_current_filter;
|
2006-12-07 22:45:34 -05:00
|
|
|
|
2009-12-21 03:47:34 -05:00
|
|
|
if ( ! isset($wp_actions) )
|
|
|
|
$wp_actions = array();
|
2010-01-15 17:11:12 -05:00
|
|
|
|
2009-12-21 03:47:34 -05:00
|
|
|
if ( ! isset($wp_actions[$tag]) )
|
|
|
|
$wp_actions[$tag] = 1;
|
2006-12-07 22:45:34 -05:00
|
|
|
else
|
2009-12-21 03:47:34 -05:00
|
|
|
++$wp_actions[$tag];
|
2006-09-12 13:45:23 -04:00
|
|
|
|
2007-11-06 13:31:43 -05:00
|
|
|
// Do 'all' actions first
|
2007-11-07 20:05:43 -05:00
|
|
|
if ( isset($wp_filter['all']) ) {
|
2011-04-14 14:05:30 -04:00
|
|
|
$wp_current_filter[] = $tag;
|
2007-11-07 20:05:43 -05:00
|
|
|
$all_args = func_get_args();
|
2007-12-06 00:56:38 -05:00
|
|
|
_wp_call_all_hook($all_args);
|
2007-11-06 13:31:43 -05:00
|
|
|
}
|
|
|
|
|
2007-12-06 00:56:38 -05:00
|
|
|
if ( !isset($wp_filter[$tag]) ) {
|
2011-04-14 14:05:30 -04:00
|
|
|
if ( isset($wp_filter['all']) )
|
|
|
|
array_pop($wp_current_filter);
|
2006-09-12 13:45:23 -04:00
|
|
|
return;
|
2007-12-06 00:56:38 -05:00
|
|
|
}
|
2006-09-12 13:45:23 -04:00
|
|
|
|
2011-04-14 14:05:30 -04:00
|
|
|
if ( !isset($wp_filter['all']) )
|
|
|
|
$wp_current_filter[] = $tag;
|
|
|
|
|
2007-11-06 13:31:43 -05:00
|
|
|
// Sort
|
2007-11-07 20:05:43 -05:00
|
|
|
if ( !isset( $merged_filters[ $tag ] ) ) {
|
2007-12-06 00:56:38 -05:00
|
|
|
ksort($wp_filter[$tag]);
|
2007-11-07 20:05:43 -05:00
|
|
|
$merged_filters[ $tag ] = true;
|
2007-11-06 13:31:43 -05:00
|
|
|
}
|
|
|
|
|
2007-11-07 20:05:43 -05:00
|
|
|
reset( $wp_filter[ $tag ] );
|
2007-11-06 13:31:43 -05:00
|
|
|
|
|
|
|
do {
|
2007-11-07 20:05:43 -05:00
|
|
|
foreach( (array) current($wp_filter[$tag]) as $the_ )
|
2007-02-27 20:09:20 -05:00
|
|
|
if ( !is_null($the_['function']) )
|
|
|
|
call_user_func_array($the_['function'], array_slice($args, 0, (int) $the_['accepted_args']));
|
|
|
|
|
2007-11-07 20:05:43 -05:00
|
|
|
} while ( next($wp_filter[$tag]) !== false );
|
2007-02-27 20:09:20 -05:00
|
|
|
|
2007-12-06 00:56:38 -05:00
|
|
|
array_pop($wp_current_filter);
|
2006-06-19 22:03:24 -04:00
|
|
|
}
|
|
|
|
|
2007-11-06 23:30:11 -05:00
|
|
|
/**
|
2008-08-07 19:39:27 -04:00
|
|
|
* Check if any action has been registered for a hook.
|
2007-12-06 00:56:38 -05:00
|
|
|
*
|
2007-11-06 23:30:11 -05:00
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Plugin
|
2008-01-09 12:48:00 -05:00
|
|
|
* @since 2.5
|
2007-12-06 00:56:38 -05:00
|
|
|
* @see has_filter() has_action() is an alias of has_filter().
|
2007-11-06 23:30:11 -05:00
|
|
|
*
|
|
|
|
* @param string $tag The name of the action hook.
|
2011-12-13 18:45:31 -05:00
|
|
|
* @param callback $function_to_check optional. If specified, return the priority of that function on this hook or false if not attached.
|
2007-12-06 00:56:38 -05:00
|
|
|
* @return int|boolean Optionally returns the priority on that hook for the specified function.
|
2007-11-06 23:30:11 -05:00
|
|
|
*/
|
|
|
|
function has_action($tag, $function_to_check = false) {
|
2007-11-07 20:05:43 -05:00
|
|
|
return has_filter($tag, $function_to_check);
|
2007-11-06 23:30:11 -05:00
|
|
|
}
|
|
|
|
|
2007-03-28 22:45:34 -04:00
|
|
|
/**
|
2008-08-07 19:39:27 -04:00
|
|
|
* Removes a function from a specified action hook.
|
2007-09-03 19:32:58 -04:00
|
|
|
*
|
|
|
|
* This function removes a function attached to a specified action hook. This
|
|
|
|
* method can be used to remove default functions attached to a specific filter
|
2007-03-28 22:45:34 -04:00
|
|
|
* hook and possibly replace them with a substitute.
|
2007-10-19 13:45:08 -04:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Plugin
|
2007-12-06 00:56:38 -05:00
|
|
|
* @since 1.2
|
2007-10-19 13:45:08 -04:00
|
|
|
*
|
2007-03-28 22:45:34 -04:00
|
|
|
* @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).
|
2011-09-05 15:08:15 -04:00
|
|
|
* @param int $accepted_args optional. The number of arguments the function accepts (default: 1).
|
2007-03-28 22:45:34 -04:00
|
|
|
* @return boolean Whether the function is removed.
|
|
|
|
*/
|
2006-06-19 22:03:24 -04:00
|
|
|
function remove_action($tag, $function_to_remove, $priority = 10, $accepted_args = 1) {
|
2007-11-07 20:05:43 -05:00
|
|
|
return remove_filter($tag, $function_to_remove, $priority, $accepted_args);
|
2006-06-19 22:03:24 -04:00
|
|
|
}
|
|
|
|
|
2008-08-17 07:15:38 -04:00
|
|
|
/**
|
|
|
|
* Remove all of the hooks from an action.
|
|
|
|
*
|
|
|
|
* @since 2.7
|
|
|
|
*
|
|
|
|
* @param string $tag The action to remove hooks from.
|
|
|
|
* @param int $priority The priority number to remove them from.
|
|
|
|
* @return bool True when finished.
|
|
|
|
*/
|
|
|
|
function remove_all_actions($tag, $priority = false) {
|
|
|
|
return remove_all_filters($tag, $priority);
|
|
|
|
}
|
|
|
|
|
2006-06-19 22:03:24 -04:00
|
|
|
//
|
|
|
|
// Functions for handling plugins.
|
|
|
|
//
|
|
|
|
|
2007-03-28 22:45:34 -04:00
|
|
|
/**
|
2008-08-07 19:39:27 -04:00
|
|
|
* Gets the basename of a plugin.
|
2007-09-03 19:32:58 -04:00
|
|
|
*
|
2008-05-27 13:55:24 -04:00
|
|
|
* This method extracts the name of a plugin from its filename.
|
2007-10-19 13:45:08 -04:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Plugin
|
|
|
|
* @since 1.5
|
|
|
|
*
|
|
|
|
* @access private
|
|
|
|
*
|
2007-03-28 22:45:34 -04:00
|
|
|
* @param string $file The filename of plugin.
|
|
|
|
* @return string The name of a plugin.
|
2008-05-27 13:55:24 -04:00
|
|
|
* @uses WP_PLUGIN_DIR
|
2007-03-28 22:45:34 -04:00
|
|
|
*/
|
2006-06-19 22:03:24 -04:00
|
|
|
function plugin_basename($file) {
|
2007-08-23 12:07:21 -04:00
|
|
|
$file = str_replace('\\','/',$file); // sanitize for Win32 installs
|
|
|
|
$file = preg_replace('|/+|','/', $file); // remove any duplicate slash
|
2008-05-27 13:55:24 -04:00
|
|
|
$plugin_dir = str_replace('\\','/',WP_PLUGIN_DIR); // sanitize for Win32 installs
|
|
|
|
$plugin_dir = preg_replace('|/+|','/', $plugin_dir); // remove any duplicate slash
|
2009-04-23 04:16:06 -04:00
|
|
|
$mu_plugin_dir = str_replace('\\','/',WPMU_PLUGIN_DIR); // sanitize for Win32 installs
|
|
|
|
$mu_plugin_dir = preg_replace('|/+|','/', $mu_plugin_dir); // remove any duplicate slash
|
2009-04-23 17:45:38 -04:00
|
|
|
$file = preg_replace('#^' . preg_quote($plugin_dir, '#') . '/|^' . preg_quote($mu_plugin_dir, '#') . '/#','',$file); // get relative path from plugins dir
|
2009-06-14 20:22:53 -04:00
|
|
|
$file = trim($file, '/');
|
2010-11-24 15:25:26 -05:00
|
|
|
return $file;
|
2006-06-19 22:03:24 -04:00
|
|
|
}
|
|
|
|
|
2009-03-10 15:50:55 -04:00
|
|
|
/**
|
|
|
|
* Gets the filesystem directory path (with trailing slash) for the plugin __FILE__ passed in
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Plugin
|
|
|
|
* @since 2.8
|
|
|
|
*
|
|
|
|
* @param string $file The filename of the plugin (__FILE__)
|
|
|
|
* @return string the filesystem path of the directory that contains the plugin
|
|
|
|
*/
|
|
|
|
function plugin_dir_path( $file ) {
|
|
|
|
return trailingslashit( dirname( $file ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the URL directory path (with trailing slash) for the plugin __FILE__ passed in
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Plugin
|
|
|
|
* @since 2.8
|
|
|
|
*
|
|
|
|
* @param string $file The filename of the plugin (__FILE__)
|
|
|
|
* @return string the URL path of the directory that contains the plugin
|
|
|
|
*/
|
|
|
|
function plugin_dir_url( $file ) {
|
|
|
|
return trailingslashit( plugins_url( '', $file ) );
|
|
|
|
}
|
|
|
|
|
2007-03-28 22:45:34 -04:00
|
|
|
/**
|
2008-08-07 19:39:27 -04:00
|
|
|
* Set the activation hook for a plugin.
|
2007-09-03 19:32:58 -04:00
|
|
|
*
|
2007-03-28 22:45:34 -04:00
|
|
|
* When a plugin is activated, the action 'activate_PLUGINNAME' hook is
|
|
|
|
* activated. In the name of this hook, PLUGINNAME is replaced with the name of
|
|
|
|
* the plugin, including the optional subdirectory. For example, when the plugin
|
2008-08-30 17:23:43 -04:00
|
|
|
* is located in wp-content/plugin/sampleplugin/sample.php, then the name of
|
|
|
|
* this hook will become 'activate_sampleplugin/sample.php'. When the plugin
|
|
|
|
* consists of only one file and is (as by default) located at
|
|
|
|
* wp-content/plugin/sample.php the name of this hook will be
|
2007-03-28 22:45:34 -04:00
|
|
|
* 'activate_sample.php'.
|
2007-10-19 13:45:08 -04:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Plugin
|
2007-12-06 00:56:38 -05:00
|
|
|
* @since 2.0
|
2007-10-19 13:45:08 -04:00
|
|
|
*
|
2007-03-28 22:45:34 -04:00
|
|
|
* @param string $file The filename of the plugin including the path.
|
2008-08-07 19:39:27 -04:00
|
|
|
* @param callback $function the function hooked to the 'activate_PLUGIN' action.
|
2007-03-28 22:45:34 -04:00
|
|
|
*/
|
2006-06-19 22:03:24 -04:00
|
|
|
function register_activation_hook($file, $function) {
|
|
|
|
$file = plugin_basename($file);
|
|
|
|
add_action('activate_' . $file, $function);
|
|
|
|
}
|
|
|
|
|
2007-03-28 22:45:34 -04:00
|
|
|
/**
|
2008-08-07 19:39:27 -04:00
|
|
|
* Set the deactivation hook for a plugin.
|
2007-09-03 19:32:58 -04:00
|
|
|
*
|
2007-03-28 22:45:34 -04:00
|
|
|
* When a plugin is deactivated, the action 'deactivate_PLUGINNAME' hook is
|
2008-08-07 19:39:27 -04:00
|
|
|
* deactivated. In the name of this hook, PLUGINNAME is replaced with the name
|
|
|
|
* of the plugin, including the optional subdirectory. For example, when the
|
2008-08-30 17:23:43 -04:00
|
|
|
* plugin is located in wp-content/plugin/sampleplugin/sample.php, then
|
2008-08-07 19:39:27 -04:00
|
|
|
* the name of this hook will become 'activate_sampleplugin/sample.php'.
|
|
|
|
*
|
2007-09-03 19:32:58 -04:00
|
|
|
* When the plugin consists of only one file and is (as by default) located at
|
2008-08-30 17:23:43 -04:00
|
|
|
* wp-content/plugin/sample.php the name of this hook will be
|
2007-03-28 22:45:34 -04:00
|
|
|
* 'activate_sample.php'.
|
2007-10-19 13:45:08 -04:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Plugin
|
|
|
|
* @since 2.0
|
|
|
|
*
|
2007-03-28 22:45:34 -04:00
|
|
|
* @param string $file The filename of the plugin including the path.
|
2008-08-07 19:39:27 -04:00
|
|
|
* @param callback $function the function hooked to the 'activate_PLUGIN' action.
|
2007-03-28 22:45:34 -04:00
|
|
|
*/
|
2006-06-19 22:03:24 -04:00
|
|
|
function register_deactivation_hook($file, $function) {
|
|
|
|
$file = plugin_basename($file);
|
|
|
|
add_action('deactivate_' . $file, $function);
|
|
|
|
}
|
|
|
|
|
2008-02-05 01:47:27 -05:00
|
|
|
/**
|
2008-08-07 19:39:27 -04:00
|
|
|
* Set the uninstallation hook for a plugin.
|
|
|
|
*
|
|
|
|
* Registers the uninstall hook that will be called when the user clicks on the
|
|
|
|
* uninstall link that calls for the plugin to uninstall itself. The link won't
|
|
|
|
* be active unless the plugin hooks into the action.
|
|
|
|
*
|
|
|
|
* The plugin should not run arbitrary code outside of functions, when
|
|
|
|
* registering the uninstall hook. In order to run using the hook, the plugin
|
|
|
|
* will have to be included, which means that any code laying outside of a
|
|
|
|
* function will be run during the uninstall process. The plugin should not
|
|
|
|
* hinder the uninstall process.
|
|
|
|
*
|
|
|
|
* If the plugin can not be written without running code within the plugin, then
|
|
|
|
* the plugin should create a file named 'uninstall.php' in the base plugin
|
|
|
|
* folder. This file will be called, if it exists, during the uninstall process
|
|
|
|
* bypassing the uninstall hook. The plugin, when using the 'uninstall.php'
|
2008-11-11 07:43:04 -05:00
|
|
|
* should always check for the 'WP_UNINSTALL_PLUGIN' constant, before
|
2008-08-07 19:39:27 -04:00
|
|
|
* executing.
|
|
|
|
*
|
2008-08-08 00:15:03 -04:00
|
|
|
* @since 2.7
|
|
|
|
*
|
2008-08-07 19:39:27 -04:00
|
|
|
* @param string $file
|
2010-11-13 04:45:57 -05:00
|
|
|
* @param callback $callback The callback to run when the hook is called. Must be a static method or function.
|
2008-08-07 19:39:27 -04:00
|
|
|
*/
|
2010-11-13 04:45:57 -05:00
|
|
|
function register_uninstall_hook( $file, $callback ) {
|
|
|
|
if ( is_array( $callback ) && is_object( $callback[0] ) ) {
|
2010-12-15 12:14:25 -05:00
|
|
|
_doing_it_wrong( __FUNCTION__, __( 'Only a static class method or function can be used in an uninstall hook.' ), '3.1' );
|
2010-11-13 04:45:57 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-08-07 19:39:27 -04:00
|
|
|
// The option should not be autoloaded, because it is not needed in most
|
|
|
|
// cases. Emphasis should be put on using the 'uninstall.php' way of
|
|
|
|
// uninstalling the plugin.
|
|
|
|
$uninstallable_plugins = (array) get_option('uninstall_plugins');
|
|
|
|
$uninstallable_plugins[plugin_basename($file)] = $callback;
|
|
|
|
update_option('uninstall_plugins', $uninstallable_plugins);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Calls the 'all' hook, which will process the functions hooked into it.
|
2007-12-06 00:56:38 -05:00
|
|
|
*
|
2008-08-07 19:39:27 -04:00
|
|
|
* The 'all' hook passes all of the arguments or parameters that were used for
|
|
|
|
* the hook, which this function was called for.
|
2007-12-06 00:56:38 -05:00
|
|
|
*
|
2008-08-07 19:39:27 -04:00
|
|
|
* This function is used internally for apply_filters(), do_action(), and
|
|
|
|
* do_action_ref_array() and is not meant to be used from outside those
|
|
|
|
* functions. This function does not check for the existence of the all hook, so
|
|
|
|
* it will fail unless the all hook exists prior to this function call.
|
2007-12-06 00:56:38 -05:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Plugin
|
2008-01-09 12:48:00 -05:00
|
|
|
* @since 2.5
|
2007-12-06 00:56:38 -05:00
|
|
|
* @access private
|
|
|
|
*
|
|
|
|
* @uses $wp_filter Used to process all of the functions in the 'all' hook
|
|
|
|
*
|
|
|
|
* @param array $args The collected parameters from the hook that was called.
|
|
|
|
* @param string $hook Optional. The hook name that was used to call the 'all' hook.
|
2008-02-05 01:47:27 -05:00
|
|
|
*/
|
|
|
|
function _wp_call_all_hook($args) {
|
|
|
|
global $wp_filter;
|
2007-12-06 00:56:38 -05:00
|
|
|
|
|
|
|
reset( $wp_filter['all'] );
|
|
|
|
do {
|
|
|
|
foreach( (array) current($wp_filter['all']) as $the_ )
|
|
|
|
if ( !is_null($the_['function']) )
|
|
|
|
call_user_func_array($the_['function'], $args);
|
|
|
|
|
|
|
|
} while ( next($wp_filter['all']) !== false );
|
|
|
|
}
|
|
|
|
|
2007-10-07 03:31:14 -04:00
|
|
|
/**
|
2008-08-07 19:39:27 -04:00
|
|
|
* Build Unique ID for storage and retrieval.
|
2007-10-19 13:45:08 -04:00
|
|
|
*
|
|
|
|
* The old way to serialize the callback caused issues and this function is the
|
|
|
|
* solution. It works by checking for objects and creating an a new property in
|
|
|
|
* the class to keep track of the object and new objects of the same class that
|
|
|
|
* need to be added.
|
|
|
|
*
|
|
|
|
* It also allows for the removal of actions and filters for objects after they
|
|
|
|
* change class properties. It is possible to include the property $wp_filter_id
|
2008-08-07 19:39:27 -04:00
|
|
|
* in your class and set it to "null" or a number to bypass the workaround.
|
|
|
|
* However this will prevent you from adding new classes and any new classes
|
|
|
|
* will overwrite the previous hook by the same class.
|
2007-10-07 03:31:14 -04:00
|
|
|
*
|
2008-08-07 19:39:27 -04:00
|
|
|
* Functions and static method callbacks are just returned as strings and
|
|
|
|
* shouldn't have any speed penalty.
|
2007-10-07 03:31:14 -04:00
|
|
|
*
|
2007-10-19 13:45:08 -04:00
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Plugin
|
2008-08-30 17:23:43 -04:00
|
|
|
* @access private
|
2007-10-19 13:45:08 -04:00
|
|
|
* @since 2.2.3
|
|
|
|
* @link http://trac.wordpress.org/ticket/3875
|
2007-10-07 03:31:14 -04:00
|
|
|
*
|
2007-10-19 13:45:08 -04:00
|
|
|
* @global array $wp_filter Storage for all of the filters and actions
|
2007-10-07 03:31:14 -04:00
|
|
|
* @param string $tag Used in counting how many hooks were applied
|
2009-05-20 12:59:01 -04:00
|
|
|
* @param callback $function Used for creating unique id
|
2011-12-13 18:45:31 -05:00
|
|
|
* @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.
|
2011-09-05 15:08:15 -04:00
|
|
|
* @return string|bool Unique ID for usage as array key or false if $priority === false and $function is an object reference, and it does not already have a unique id.
|
2007-10-07 03:31:14 -04:00
|
|
|
*/
|
2007-12-06 00:56:38 -05:00
|
|
|
function _wp_filter_build_unique_id($tag, $function, $priority) {
|
2007-11-07 20:05:43 -05:00
|
|
|
global $wp_filter;
|
2009-05-20 12:59:01 -04:00
|
|
|
static $filter_id_count = 0;
|
2007-09-03 19:19:20 -04:00
|
|
|
|
2010-01-07 03:27:02 -05:00
|
|
|
if ( is_string($function) )
|
2007-08-24 10:18:08 -04:00
|
|
|
return $function;
|
2010-01-07 03:27:02 -05:00
|
|
|
|
2010-05-16 04:10:39 -04:00
|
|
|
if ( is_object($function) ) {
|
2010-05-16 09:41:02 -04:00
|
|
|
// Closures are currently implemented as objects
|
|
|
|
$function = array( $function, '' );
|
2010-05-16 04:10:39 -04:00
|
|
|
} else {
|
|
|
|
$function = (array) $function;
|
|
|
|
}
|
2010-05-25 22:42:15 -04:00
|
|
|
|
2010-01-07 03:27:02 -05:00
|
|
|
if (is_object($function[0]) ) {
|
2009-10-22 15:33:11 -04:00
|
|
|
// Object Class Calling
|
|
|
|
if ( function_exists('spl_object_hash') ) {
|
|
|
|
return spl_object_hash($function[0]) . $function[1];
|
|
|
|
} else {
|
|
|
|
$obj_idx = get_class($function[0]).$function[1];
|
|
|
|
if ( !isset($function[0]->wp_filter_id) ) {
|
|
|
|
if ( false === $priority )
|
|
|
|
return false;
|
|
|
|
$obj_idx .= isset($wp_filter[$tag][$priority]) ? count((array)$wp_filter[$tag][$priority]) : $filter_id_count;
|
|
|
|
$function[0]->wp_filter_id = $filter_id_count;
|
|
|
|
++$filter_id_count;
|
|
|
|
} else {
|
|
|
|
$obj_idx .= $function[0]->wp_filter_id;
|
|
|
|
}
|
2010-01-07 03:27:02 -05:00
|
|
|
|
2009-10-22 15:33:11 -04:00
|
|
|
return $obj_idx;
|
|
|
|
}
|
|
|
|
} else if ( is_string($function[0]) ) {
|
|
|
|
// Static Calling
|
2007-08-24 10:18:08 -04:00
|
|
|
return $function[0].$function[1];
|
2009-10-22 15:33:11 -04:00
|
|
|
}
|
2007-08-24 10:18:08 -04:00
|
|
|
}
|