You appear to be a bot. Output may be restricted
Description
Implement "admin_notices" for oikLoad admin/oik-activation.php before any other plugins which may be dependent upon it. This saves them from loading their own version of the same code. Note: If oik-lib is not loaded then the dependency checking will not be performed so we need to ensure "oik-depends" is loaded prior to "oik-activation".
Usage
oik_admin_notices();
Parameters
Returns
voidSource
File name: oik/oik.phpLines:
1 to 6 of 6
function oik_admin_notices() { oik_require_lib_wrapper( "oik-depends" ); $loaded = oik_require_lib_wrapper( "oik-activation" ); bw_trace2( $loaded, "oik-activation loaded?", false, BW_TRACE_DEBUG ); }View on GitHub View on Trac