You appear to be a bot. Output may be restricted
Description
Determine the name of the action file
Usage
$string = bw_action_file();
Parameters
Returns
string $file fully qualified file name for the action file Notes:- Similar to bw_trace_file except it uses the action options
- If we don't use ABSPATH then the file can be written to into whatever is the current directory, which may be wp-admin or elsewhere
- If bw_action_options are not loaded the default file is "bwaction.loh"
Source
File name: oik/includes/oik-bwtrace.incLines:
1 to 8 of 8
function bw_action_file() { global $bw_action_options; if ( !defined('ABSPATH') ) define('ABSPATH', dirname(__FILE__) . '/'); $file = ABSPATH; $file .= bw_array_get( $bw_action_options, 'file', "bwaction.loh" ); return( $file ); }View on GitHub View on Trac