Description
Log a debug_backtrace() to the trace log file if tracing is active
Usage
bw_backtrace( $level );Parameters
- $level
- ( integer ) optional default: BW_TRACE_ALWAYS – required level of tracing
Returns
voidSource
File name: oik-libs/libs/bwtrace.phpLines:
1 to 6 of 6
function bw_backtrace( $level=BW_TRACE_ALWAYS ) { global $bw_trace_on, $bw_trace_level; if ( $bw_trace_on && ( $level <= $bw_trace_level ) ) { bw_lazy_backtrace(); } }View on GitHub
Called by
1 to 15 of 75
- admin/oik-depends.inc
- admin/oik-plugins.inc
- admin/oik-themes.inc
- bbboing_oik_add_shortcodes() – Implement the "oik_add_shortcodes" action for bbboing
- bobbcomp::bw_array_get_dcb() – Return the array[index] or build the result by calling $callback, passing the $default as the arg.
- bwsc_jquery() – Implement the [bw_jq] shortcode
- bw_array_get_dcb() – Return the array[index] or build the result by calling $callback, passing the $default as the arg.
- bw_echo() – bw API partial equivalent of PHP’s output buffering
- bw_file_exists() – Check the "enhanced" file exists
- bw_get_docroot_suffix() – Get the document root suffix
- bw_gitrepo_plugin() – Implement "in_plugin_update_message-$plugin_file" for a Git repo plugin
- bw_handle_action() – Handle a start or end action
- bw_metadata() – Implement the [bw_fields] shortcode
- bw_query_shorten() – Query the need to shorten a select field’s options
- bw_sc_shortcake_compatible() – Implement "bw_sc_shortcake_compatible" for oik
Invoked by
Calls
1 to 1 of 1
