Changeset 26868 for trunk/src/wp-includes/plugin.php
- Timestamp:
- 12/24/2013 06:56:05 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/plugin.php
r25607 r26868 17 17 * @package WordPress 18 18 * @subpackage Plugin 19 * @since 1.5 19 * @since 1.5.0 20 20 */ 21 21 … … 94 94 * @package WordPress 95 95 * @subpackage Plugin 96 * @since 2.5 96 * @since 2.5.0 97 * 97 98 * @global array $wp_filter Stores all of the filters 98 99 * … … 276 277 * @package WordPress 277 278 * @subpackage Plugin 278 * @since 1.2 279 * 280 * @since 1.2.0 279 281 * 280 282 * @param string $tag The filter hook to which the function to be removed is hooked. … … 302 304 * Remove all of the hooks from a filter. 303 305 * 304 * @since 2.7 306 * @since 2.7.0 305 307 * 306 308 * @param string $tag The filter to remove hooks from. … … 329 331 * @package WordPress 330 332 * @subpackage Plugin 331 * @since 2.5 333 * @since 2.5.0 332 334 * 333 335 * @return string Hook name of the current filter or action. … … 350 352 * @package WordPress 351 353 * @subpackage Plugin 352 * @since 1.2 354 * 355 * @since 1.2.0 353 356 * 354 357 * @param string $tag The name of the action to which the $function_to_add is hooked. … … 376 379 * @package WordPress 377 380 * @subpackage Plugin 378 * @since 1.2 381 * 382 * @since 1.2.0 383 * 379 384 * @global array $wp_filter Stores all of the filters 380 385 * @global array $wp_actions Increments the amount of times action was triggered. … … 439 444 * @package WordPress 440 445 * @subpackage Plugin 441 * @since 2.1 446 * @since 2.1.0 447 * 442 448 * @global array $wp_actions Increments the amount of times action was triggered. 443 449 * … … 462 468 * @package WordPress 463 469 * @subpackage Plugin 464 * @since 2.1 470 * @since 2.1.0 471 * 465 472 * @global array $wp_filter Stores all of the filters 466 473 * @global array $wp_actions Increments the amount of times action was triggered. … … 517 524 * @package WordPress 518 525 * @subpackage Plugin 519 * @since 2.5 526 * @since 2.5.0 527 * 520 528 * @see has_filter() has_action() is an alias of has_filter(). 521 529 * … … 540 548 * @package WordPress 541 549 * @subpackage Plugin 542 * @since 1.2 550 * 551 * @since 1.2.0 543 552 * 544 553 * @param string $tag The action hook to which the function to be removed is hooked. … … 554 563 * Remove all of the hooks from an action. 555 564 * 556 * @since 2.7 565 * @since 2.7.0 557 566 * 558 567 * @param string $tag The action to remove hooks from. … … 575 584 * @package WordPress 576 585 * @subpackage Plugin 577 * @since 1.5 586 * 587 * @since 1.5.0 578 588 * 579 589 * @access private … … 599 609 * @package WordPress 600 610 * @subpackage Plugin 601 * @since 2.8 611 * @since 2.8.0 602 612 * 603 613 * @param string $file The filename of the plugin (__FILE__) … … 612 622 * @package WordPress 613 623 * @subpackage Plugin 614 * @since 2.8 624 * @since 2.8.0 615 625 * 616 626 * @param string $file The filename of the plugin (__FILE__) … … 636 646 * @package WordPress 637 647 * @subpackage Plugin 638 * @since 2.0 648 * @since 2.0.0 639 649 * 640 650 * @param string $file The filename of the plugin including the path. … … 661 671 * @package WordPress 662 672 * @subpackage Plugin 663 * @since 2.0 673 * @since 2.0.0 664 674 * 665 675 * @param string $file The filename of the plugin including the path. … … 691 701 * executing. 692 702 * 693 * @since 2.7 703 * @since 2.7.0 694 704 * 695 705 * @param string $file … … 723 733 * @package WordPress 724 734 * @subpackage Plugin 725 * @since 2.5 735 * @since 2.5.0 726 736 * @access private 727 737 *
Note: See TracChangeset
for help on using the changeset viewer.