Script Loader: move `_WP_Dependency` into its own file.
See #37827. Built from https://develop.svn.wordpress.org/trunk@38375 git-svn-id: http://core.svn.wordpress.org/trunk@38316 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
76c7864367
commit
b2c394a330
|
@ -0,0 +1,104 @@
|
|||
<?php
|
||||
/**
|
||||
* Dependencies API: _WP_Dependency class
|
||||
*
|
||||
* @since 4.7.0
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Dependencies
|
||||
*/
|
||||
|
||||
/**
|
||||
* Class _WP_Dependency
|
||||
*
|
||||
* Helper class to register a handle and associated data.
|
||||
*
|
||||
* @access private
|
||||
* @since 2.6.0
|
||||
*/
|
||||
class _WP_Dependency {
|
||||
/**
|
||||
* The handle name.
|
||||
*
|
||||
* @access public
|
||||
* @since 2.6.0
|
||||
* @var null
|
||||
*/
|
||||
public $handle;
|
||||
|
||||
/**
|
||||
* The handle source.
|
||||
*
|
||||
* @access public
|
||||
* @since 2.6.0
|
||||
* @var null
|
||||
*/
|
||||
public $src;
|
||||
|
||||
/**
|
||||
* An array of handle dependencies.
|
||||
*
|
||||
* @access public
|
||||
* @since 2.6.0
|
||||
* @var array
|
||||
*/
|
||||
public $deps = array();
|
||||
|
||||
/**
|
||||
* The handle version.
|
||||
*
|
||||
* Used for cache-busting.
|
||||
*
|
||||
* @access public
|
||||
* @since 2.6.0
|
||||
* @var bool|string
|
||||
*/
|
||||
public $ver = false;
|
||||
|
||||
/**
|
||||
* Additional arguments for the handle.
|
||||
*
|
||||
* @access public
|
||||
* @since 2.6.0
|
||||
* @var null
|
||||
*/
|
||||
public $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
|
||||
*/
|
||||
public $extra = array();
|
||||
|
||||
/**
|
||||
* Setup dependencies.
|
||||
*
|
||||
* @since 2.6.0
|
||||
*/
|
||||
public function __construct() {
|
||||
@list( $this->handle, $this->src, $this->deps, $this->ver, $this->args ) = func_get_args();
|
||||
if ( ! is_array($this->deps) )
|
||||
$this->deps = array();
|
||||
}
|
||||
|
||||
/**
|
||||
* Add handle data.
|
||||
*
|
||||
* @access public
|
||||
* @since 2.6.0
|
||||
*
|
||||
* @param string $name The data key to add.
|
||||
* @param mixed $data The data value to add.
|
||||
* @return bool False if not scalar, true otherwise.
|
||||
*/
|
||||
public function add_data( $name, $data ) {
|
||||
if ( !is_scalar($name) )
|
||||
return false;
|
||||
$this->extra[$name] = $data;
|
||||
return true;
|
||||
}
|
||||
|
||||
}
|
|
@ -211,7 +211,7 @@ class WP_Dependencies {
|
|||
* as a query string for cache busting purposes. If version is set to false, a version
|
||||
* number is automatically added equal to current installed WordPress version.
|
||||
* If set to null, no version is added.
|
||||
* @param mixed $args Optional. Custom property of the item. NOT the class property $args. Examples: $media, $in_footer.
|
||||
* @param mixed $args Optional. Custom property of the item. NOT the class property $args. Examples: $media, $in_footer.
|
||||
* @return bool Whether the item has been registered. True on success, false on failure.
|
||||
*/
|
||||
public function add( $handle, $src, $deps = array(), $ver = false, $args = null ) {
|
||||
|
@ -411,99 +411,4 @@ class WP_Dependencies {
|
|||
return true;
|
||||
}
|
||||
|
||||
} // WP_Dependencies
|
||||
|
||||
/**
|
||||
* Class _WP_Dependency
|
||||
*
|
||||
* Helper class to register a handle and associated data.
|
||||
*
|
||||
* @access private
|
||||
* @since 2.6.0
|
||||
*/
|
||||
class _WP_Dependency {
|
||||
/**
|
||||
* The handle name.
|
||||
*
|
||||
* @access public
|
||||
* @since 2.6.0
|
||||
* @var null
|
||||
*/
|
||||
public $handle;
|
||||
|
||||
/**
|
||||
* The handle source.
|
||||
*
|
||||
* @access public
|
||||
* @since 2.6.0
|
||||
* @var null
|
||||
*/
|
||||
public $src;
|
||||
|
||||
/**
|
||||
* An array of handle dependencies.
|
||||
*
|
||||
* @access public
|
||||
* @since 2.6.0
|
||||
* @var array
|
||||
*/
|
||||
public $deps = array();
|
||||
|
||||
/**
|
||||
* The handle version.
|
||||
*
|
||||
* Used for cache-busting.
|
||||
*
|
||||
* @access public
|
||||
* @since 2.6.0
|
||||
* @var bool|string
|
||||
*/
|
||||
public $ver = false;
|
||||
|
||||
/**
|
||||
* Additional arguments for the handle.
|
||||
*
|
||||
* @access public
|
||||
* @since 2.6.0
|
||||
* @var null
|
||||
*/
|
||||
public $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
|
||||
*/
|
||||
public $extra = array();
|
||||
|
||||
/**
|
||||
* Setup dependencies.
|
||||
*
|
||||
* @since 2.6.0
|
||||
*/
|
||||
public function __construct() {
|
||||
@list( $this->handle, $this->src, $this->deps, $this->ver, $this->args ) = func_get_args();
|
||||
if ( ! is_array($this->deps) )
|
||||
$this->deps = array();
|
||||
}
|
||||
|
||||
/**
|
||||
* Add handle data.
|
||||
*
|
||||
* @access public
|
||||
* @since 2.6.0
|
||||
*
|
||||
* @param string $name The data key to add.
|
||||
* @param mixed $data The data value to add.
|
||||
* @return bool False if not scalar, true otherwise.
|
||||
*/
|
||||
public function add_data( $name, $data ) {
|
||||
if ( !is_scalar($name) )
|
||||
return false;
|
||||
$this->extra[$name] = $data;
|
||||
return true;
|
||||
}
|
||||
|
||||
} // _WP_Dependencies
|
||||
}
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
* @package WordPress
|
||||
*/
|
||||
|
||||
/** WordPress Dependency Class */
|
||||
require( ABSPATH . WPINC . '/class-wp-dependency.php' );
|
||||
|
||||
/** WordPress Dependencies Class */
|
||||
require( ABSPATH . WPINC . '/class.wp-dependencies.php' );
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.7-alpha-38374';
|
||||
$wp_version = '4.7-alpha-38375';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue