Changeset 25477 for trunk/src/wp-admin/includes/plugin.php
- Timestamp:
- 09/18/2013 11:57:18 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/plugin.php
r25474 r25477 544 544 * Fires before a plugin is activated in activate_plugin() when the $silent parameter is false 545 545 * 546 * @since 3.0.2546 * @since 2.9.0 547 547 * 548 * @param string $plugin Basename of the plugin path from {@see activate_plugin()}549 * @param bool $network_wide Argument from {@see activate_plugin()}548 * @param string $plugin Basename of the plugin path from {@see activate_plugin()}. 549 * @param bool $network_wide Argument from {@see activate_plugin()}. 550 550 */ 551 551 do_action( 'activate_plugin', $plugin, $network_wide ); … … 557 557 * activate_plugin() to create a dynamically named action. 558 558 * 559 * @since 3.0.2559 * @since 2.0.0 560 560 * 561 * @param bool $network_wide Argument from {@see activate_plugin()} 561 * @param bool $network_wide Argument from {@see activate_plugin()}. 562 562 */ 563 563 do_action( 'activate_' . $plugin, $network_wide ); … … 577 577 * Fires after a plugin has been activated in activate_plugin() when the $silent parameter is false 578 578 * 579 * @since 3.0.2579 * @since 2.9.0 580 580 * 581 * @param string $plugin Basename of the plugin path from {@see activate_plugin()}582 * @param bool $network_wide Argument from {@see activate_plugin()}581 * @param string $plugin Basename of the plugin path from {@see activate_plugin()}. 582 * @param bool $network_wide Argument from {@see activate_plugin()}. 583 583 */ 584 584 do_action( 'activated_plugin', $plugin, $network_wide ); … … 626 626 * and when the $silent parameter is false. 627 627 * 628 * @since 3.3.2628 * @since 2.9.0 629 629 * 630 * @param string $plugin Basename of the plugin path from {@see activate_plugin()} 631 * @param bool $network_deactivating True if $network_wide passed in {@see deactivate_plugin()} 632 * is true and the plugin is active for the network. 630 * @param string $plugin Basename of the plugin path from {@see activate_plugin()}. 631 * @param bool $network_deactivating True if $network_wide passed in {@see deactivate_plugin()} is true and the plugin is active for the network. 633 632 */ 634 633 do_action( 'deactivate_plugin', $plugin, $network_deactivating ); … … 659 658 * to create a dynamically named action. 660 659 * 661 * @since 3.3.2660 * @since 2.0.0 662 661 * 663 * @param bool $network_deactivating True if $network_wide passed in {@see deactivate_plugin()} 664 * is true and the plugin is active for the network. 662 * @param bool $network_deactivating True if $network_wide passed in {@see deactivate_plugin()} is true and the plugin is active for the network. 665 663 */ 666 664 do_action( 'deactivate_' . $plugin, $network_deactivating ); … … 670 668 * and when the $silent parameter is false. 671 669 * 672 * @since 3.3.2670 * @since 2.9.0 673 671 * 674 * @param string $plugin Basename of the plugin path from {@see activate_plugin()} 675 * @param bool $network_deactivating True if $network_wide passed in {@see deactivate_plugin()} 676 * is true and the plugin is active for the network. 672 * @param string $plugin Basename of the plugin path from {@see activate_plugin()}. 673 * @param bool $network_deactivating True if $network_wide passed in {@see deactivate_plugin()} is true and the plugin is active for the network. 677 674 */ 678 675 do_action( 'deactivated_plugin', $plugin, $network_deactivating ); … … 933 930 * plugin passed to {@see uninstall_plugin()} to create a dynamically named action. 934 931 * 935 * @since 2. 6.1932 * @since 2.7.0 936 933 */ 937 934 do_action( 'uninstall_' . $file );
Note: See TracChangeset
for help on using the changeset viewer.