You appear to be a bot. Output may be restricted
Description
Test if this plugin is functionalUnless oik is installed and activated this plugin won't do anything Note: If oik is installed and activated then we shouldn't have any problem unless there's a version number mismatch.
Usage
oik_plugin_lazy_activation( $plugin, $dependencies, $callback );
Parameters
- $plugin
- ( mixed ) optional –
- $dependencies
- ( mixed ) optional –
- $callback
- ( mixed ) optional –
Returns
voidSource
File name: oik-batchmove/admin/oik-activation.phpLines:
1 to 8 of 8
function oik_plugin_lazy_activation( $plugin=null, $dependencies=null, $callback=null ) { if ( function_exists( "oik_depends" ) ) { /* Good - oik appears to be activated and loaded */ oik_depends( $plugin, $dependencies, $callback ); } else { call_user_func( $callback, $plugin, $dependencies, "missing" ); } }View on GitHub View on Trac