You appear to be a bot. Output may be restricted
Description
Queries the changes to dependencies.The code needs to take into account dependencies that have been registered as well as those that have been enqueued. So we need to find the differences in multiple arrays.
field | handle? | purpose |
---|---|---|
registered | yes | to repeat wp_register_script |
queue | yes | to repeat wp_enqueue_script after registered |
to_do | no? | |
done | no? | |
args | no? |
Usage
dependencies_cache::query_dependencies_changes();
Parameters
Returns
voidSource
File name: oik/libs/class-dependencies-cache.phpLines:
1 to 5 of 5
function query_dependencies_changes() { $this->query_scripts_changes(); $this->query_styles_changes(); return( true ); }View on GitHub View on Trac