You appear to be a bot. Output may be restricted
Description
Saves the current state of dependencies for scripts
Usage
dependencies_cache::save_scripts();
Parameters
Returns
voidSource
File name: oik/libs/class-dependencies-cache.phpLines:
1 to 12 of 12
function save_scripts() { global $wp_scripts; $init = wp_scripts(); $this->bw_scripts = clone $wp_scripts; $count_wp = count( $wp_scripts->registered ); $count_bw = count( $this->bw_scripts->registered ); bw_trace2( $count_wp, "count_wp and bw: $count_bw" ); bw_trace2( $this->bw_scripts, "bw_scripts", false, BW_TRACE_VERBOSE ); }View on GitHub View on Trac