You appear to be a bot. Output may be restricted
Description
Load the oik_boot.php shared library fileIf the oik_init() function is not already defined then load the shared library file from our own libs directory. Originally we loaded oik_boot.inc from the oik base plugin. This is now a shared library file that we deliver in the libs folder, along with bwtrace.php We need to run oik_init() in order to ensure trace functions are available.
Usage
oik_batch_load_oik_boot();
Parameters
Returns
voidSource
File name: oik-batch/libs/oik-cli.phpLines:
1 to 8 of 8
function oik_batch_load_oik_boot() { if ( !function_exists( "oik_init" ) ) { oik_batch_load_lib( "oik_boot" ); } if ( function_exists( "oik_init" ) ) { oik_init(); } }View on GitHub