[wp-trac] [WordPress Trac] #14170: Problems with network activation
WordPress Trac
wp-trac at lists.automattic.com
Wed Oct 27 14:07:02 UTC 2010
#14170: Problems with network activation
--------------------------+-------------------------------------------------
Reporter: scribu | Owner:
Type: defect (bug) | Status: new
Priority: high | Milestone: 3.1
Component: Multisite | Version:
Severity: major | Keywords: has-patch
--------------------------+-------------------------------------------------
Comment(by scribu):
So, if you were doing this:
{{{
register_activation_hook( __FILE__, 'my_plugin_activation' );
function my_plugin_activation() {
// usual activation code
}
}}}
You can now do this:
{{{
register_activation_hook( __FILE__, 'my_plugin_activation' );
function my_plugin_activation( $network_wide ) {
if ( $network_wide ) {
// network activation code
} else {
// usual activation code
}
}
}}}
--
Ticket URL: <http://core.trac.wordpress.org/ticket/14170#comment:30>
WordPress Trac <http://core.trac.wordpress.org/>
WordPress blogging software
More information about the wp-trac
mailing list