Changeset 25880 for trunk/src/wp-admin/includes/plugin.php
- Timestamp:
- 10/23/2013 02:37:54 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/plugin.php
r25482 r25880 543 543 /** 544 544 * Fires before a plugin is activated in activate_plugin() when the $silent parameter is false. 545 * 545 * 546 546 * @since 2.9.0 547 547 * … … 554 554 /** 555 555 * Fires before a plugin is activated in activate_plugin() when the $silent parameter is false. 556 * 556 * 557 557 * The action concatenates the 'activate_' prefix with the $plugin value passed to 558 558 * activate_plugin() to create a dynamically-named action. 559 * 559 * 560 560 * @since 2.0.0 561 561 * … … 578 578 /** 579 579 * Fires after a plugin has been activated in activate_plugin() when the $silent parameter is false. 580 * 580 * 581 581 * @since 2.9.0 582 582 * … … 628 628 * Fires for each plugin being deactivated in deactivate_plugins(), before deactivation 629 629 * and when the $silent parameter is false. 630 * 630 * 631 631 * @since 2.9.0 632 632 * 633 633 * @param string $plugin Plugin path to main plugin file with plugin data. 634 * @param bool $network_deactivating Whether the plugin is deactivated for all sites in the network 634 * @param bool $network_deactivating Whether the plugin is deactivated for all sites in the network 635 635 * or just the current site. Multisite only. Default is false. 636 636 */ … … 658 658 * Fires for each plugin being deactivated in deactivate_plugins(), after deactivation 659 659 * and when the $silent parameter is false. 660 * 660 * 661 661 * The action concatenates the 'deactivate_' prefix with the plugin's basename 662 662 * to create a dynamically-named action. 663 * 663 * 664 664 * @since 2.0.0 665 665 * 666 * @param bool $network_deactivating Whether the plugin is deactivated for all sites in the network 666 * @param bool $network_deactivating Whether the plugin is deactivated for all sites in the network 667 667 * or just the current site. Multisite only. Default is false. 668 668 */ … … 672 672 * Fires for each plugin being deactivated in deactivate_plugins(), after deactivation 673 673 * and when the $silent parameter is false. 674 * 674 * 675 675 * @since 2.9.0 676 676 * 677 677 * @param string $plugin Plugin path to main plugin file with plugin data. 678 * @param bool $network_deactivating Whether the plugin is deactivated for all sites in the network 678 * @param bool $network_deactivating Whether the plugin is deactivated for all sites in the network 679 679 * or just the current site. Multisite only. Default is false. 680 680 */ … … 932 932 /** 933 933 * Fires in uninstall_plugin() once the plugin has been uninstalled. 934 * 934 * 935 935 * The action concatenates the 'uninstall_' prefix with the basename of the 936 936 * plugin passed to {@see uninstall_plugin()} to create a dynamically-named action.
Note: See TracChangeset
for help on using the changeset viewer.