You appear to be a bot. Output may be restricted
Description
Returns serialized dependencies
Usage
$array = dependencies_cache::serialize_dependencies();
Parameters
Returns
arrayTO DO
This doesn't actually do the serializingSource
File name: oik/libs/class-dependencies-cache.phpLines:
1 to 8 of 8
function serialize_dependencies() { $dependencies = array(); $dependencies['scripts'] = $this->registered_scripts; $dependencies['queued_scripts'] = $this->queued_scripts; $dependencies['styles'] = $this->registered_styles; $dependencies['queued_styles'] = $this->queued_styles; return( $dependencies ); }View on GitHub View on Trac