Inline documentation for _WP_Dependency class properties.
See #23914. git-svn-id: https://develop.svn.wordpress.org/trunk@25518 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
39169ce3cc
commit
c4b9f70f17
@ -295,12 +295,60 @@ class WP_Dependencies {
|
||||
}
|
||||
|
||||
class _WP_Dependency {
|
||||
/**
|
||||
* The handle name.
|
||||
*
|
||||
* @access public
|
||||
* @since 2.6.0
|
||||
* @var null
|
||||
*/
|
||||
var $handle;
|
||||
var $src;
|
||||
var $deps = array();
|
||||
var $ver = false;
|
||||
var $args = null;
|
||||
|
||||
/**
|
||||
* The handle source.
|
||||
*
|
||||
* @access public
|
||||
* @since 2.6.0
|
||||
* @var null
|
||||
*/
|
||||
var $src;
|
||||
|
||||
/**
|
||||
* An array of handle dependencies.
|
||||
*
|
||||
* @access public
|
||||
* @since 2.6.0
|
||||
* @var array
|
||||
*/
|
||||
var $deps = array();
|
||||
|
||||
/**
|
||||
* The handle version.
|
||||
*
|
||||
* Used for cache-busting.
|
||||
*
|
||||
* @access public
|
||||
* @since 2.6.0
|
||||
* @var bool|string
|
||||
*/
|
||||
var $ver = false;
|
||||
|
||||
/**
|
||||
* Additional arguments for the handle.
|
||||
*
|
||||
* @access public
|
||||
* @since 2.6.0
|
||||
* @var null
|
||||
*/
|
||||
var $args = null; // Custom property, such as $in_footer or $media.
|
||||
|
||||
/**
|
||||
* Extra data to supply to the handle.
|
||||
*
|
||||
* @access public
|
||||
* @since 2.6.0
|
||||
* @var array
|
||||
*/
|
||||
var $extra = array();
|
||||
|
||||
function __construct() {
|
||||
|
Loading…
Reference in New Issue
Block a user