You appear to be a bot. Output may be restricted
Description
Add a plugin relocation to the $bw_relocations list
Usage
bw_add_relocation( $from, $to );
Parameters
- $from
- ( string ) required – from plugin basename
- $to
- ( string ) required – to plugin basename
Returns
voidSource
File name: oik/admin/oik-admin.phpLines:
1 to 8 of 8
function bw_add_relocation( $from, $to ) { global $bw_relocations; if ( !isset( $bw_relocations ) ) { $bw_relocations = array(); } $bw_relocations[ $from ] = $to; bw_trace2( $bw_relocations ); }View on GitHub View on Trac