You appear to be a bot. Output may be restricted
Description
Register the default librariesNote: It doesn't really matter which version of "oik_boot" or "bwtrace" has been loaded so long as we can determine the version for any dependency checking being performed by other plugins. The convention for these "Must Use" libraries is that we set some constants representing the source file and version. We expect the *_INCLUDED constants to be defined but not necessarily the *_FILE ones, since this is dependent on the correct version of the oik and oik-bwtrace plugins being installed. There will be warning messages if the *_FILE defines are not set.
Usage
oik_lib_register_default_libs();
Parameters
Returns
voidSource
File name: oik-libs/libs/oik-lib.phpLines:
1 to 5 of 5
function oik_lib_register_default_libs() { oik_register_lib( "oik_boot", OIK_BOOT_FILE , null, OIK_BOOT_INCLUDED ); oik_register_lib( "bwtrace", BWTRACE_FILE , null, BWTRACE_INCLUDED ); oik_register_lib( "oik-lib", __FILE__, "oik_boot,bwtrace", OIK_LIB_INCLUDED ); }View on GitHub