You appear to be a bot. Output may be restricted
Description
Perform plugin relocation just before the plugins are listed on the admin page for action: pre_current_active_plugins
Usage
bw_lazy_relocate_pre_current_active_plugins( $plugins );
Parameters
- $plugins
- ( mixed ) required –
Returns
voidSource
File name: oik/admin/oik-relocate.incLines:
1 to 9 of 9
function bw_lazy_relocate_pre_current_active_plugins( $plugins ) { if ( defined( "BW_DISABLE_RELOCATION" ) && ( true == BW_DISABLE_RELOCATION) ) { global $bw_relocations; bw_trace2( BW_DISABLE_RELOCATION, "BW_DISABLE_RELOCATION is true" ); } else { bw_relocate_plugins(); bw_update_list_table(); } }View on GitHub View on Trac