You appear to be a bot. Output may be restricted
Description
Start watching for any change if requiredWe allow the string to be defined or set in oik action options with the defined value taking precedence, obviously.
Usage
bw_trace_anychange_loaded();
Parameters
Returns
voidSource
File name: oik-bwtrace/includes/bwtrace-anychange.phpLines:
1 to 13 of 13
function bw_trace_anychange_loaded() { if ( !defined( "BW_TRACE_ANYCHANGE" ) ) { global $bw_action_options; $anychange = bw_array_get( $bw_action_options, "anychange", null ); if ( $anychange ) { define( "BW_TRACE_ANYCHANGE", $anychange ); } } if ( defined( "BW_TRACE_ANYCHANGE" ) ) { oik_require( "includes/oik-actions.php", "oik-bwtrace" ); bw_trace_anychange_on(); } }View on GitHub View on Trac