Changeset 27262 for trunk/src/wp-includes/plugin.php
- Timestamp:
- 02/25/2014 05:13:08 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/plugin.php
r27158 r27262 64 64 * so everything is as quick as possible. 65 65 * 66 * @package WordPress67 * @subpackage Plugin68 *69 66 * @global array $wp_filter A multidimensional array of all hooks and the callbacks hooked to them. 70 67 * @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. … … 92 89 * Check if any filter has been registered for a hook. 93 90 * 94 * @package WordPress95 * @subpackage Plugin96 91 * @since 2.5.0 97 92 * … … 148 143 * </code> 149 144 * 150 * @package WordPress151 * @subpackage Plugin152 *153 145 * @global array $wp_filter Stores all of the filters 154 146 * @global array $merged_filters Merges the filter hooks using this function. … … 214 206 * functions hooked to <tt>$tag</tt> are supplied using an array. 215 207 * 216 * @package WordPress217 * @subpackage Plugin218 208 * @since 3.0.0 219 209 * @global array $wp_filter Stores all of the filters … … 275 265 * will be given on removal failure. 276 266 * 277 * @package WordPress278 * @subpackage Plugin279 *280 267 * @since 1.2.0 281 268 * … … 329 316 * Retrieve the name of the current filter or action. 330 317 * 331 * @package WordPress332 * @subpackage Plugin333 318 * @since 2.5.0 334 319 * … … 350 335 * @uses add_filter() Adds an action. Parameter list and functionality are the same. 351 336 * 352 * @package WordPress353 * @subpackage Plugin354 *355 337 * @since 1.2.0 356 338 * … … 376 358 * @see apply_filters() This function works similar with the exception that 377 359 * nothing is returned and only the functions or methods are called. 378 *379 * @package WordPress380 * @subpackage Plugin381 360 * 382 361 * @since 1.2.0 … … 442 421 * Retrieve the number of times an action is fired. 443 422 * 444 * @package WordPress445 * @subpackage Plugin446 423 * @since 2.1.0 447 424 * … … 466 443 * functions hooked to <tt>$tag</tt> are supplied using an array. 467 444 * 468 * @package WordPress469 * @subpackage Plugin470 445 * @since 2.1.0 471 446 * … … 522 497 * Check if any action has been registered for a hook. 523 498 * 524 * @package WordPress525 * @subpackage Plugin526 499 * @since 2.5.0 527 500 * … … 546 519 * hook and possibly replace them with a substitute. 547 520 * 548 * @package WordPress549 * @subpackage Plugin550 *551 521 * @since 1.2.0 552 522 * … … 582 552 * This method extracts the name of a plugin from its filename. 583 553 * 584 * @package WordPress585 * @subpackage Plugin586 *587 554 * @since 1.5.0 588 555 * … … 631 598 /** 632 599 * Gets the filesystem directory path (with trailing slash) for the plugin __FILE__ passed in 633 * @package WordPress 634 * @subpackage Plugin 600 * 635 601 * @since 2.8.0 636 602 * … … 644 610 /** 645 611 * Gets the URL directory path (with trailing slash) for the plugin __FILE__ passed in 646 * @package WordPress 647 * @subpackage Plugin 612 * 648 613 * @since 2.8.0 649 614 * … … 668 633 * 'activate_sample.php'. 669 634 * 670 * @package WordPress671 * @subpackage Plugin672 635 * @since 2.0.0 673 636 * … … 693 656 * 'deactivate_sample.php'. 694 657 * 695 * @package WordPress696 * @subpackage Plugin697 658 * @since 2.0.0 698 659 * … … 755 716 * it will fail unless the all hook exists prior to this function call. 756 717 * 757 * @package WordPress758 * @subpackage Plugin759 718 * @since 2.5.0 760 719 * @access private … … 793 752 * shouldn't have any speed penalty. 794 753 * 795 * @package WordPress796 * @subpackage Plugin797 754 * @access private 798 755 * @since 2.2.3
Note: See TracChangeset
for help on using the changeset viewer.