Make WordPress Core

Changeset 25518


Ignore:
Timestamp:
09/20/2013 05:45:30 PM (11 years ago)
Author:
DrewAPicture
Message:

Inline documentation for _WP_Dependency class properties.

See #23914.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class.wp-dependencies.php

    r25517 r25518  
    296296
    297297class _WP_Dependency {
     298    /**
     299     * The handle name.
     300     *
     301     * @access public
     302     * @since 2.6.0
     303     * @var null
     304     */
    298305    var $handle;
     306
     307    /**
     308     * The handle source.
     309     *
     310     * @access public
     311     * @since 2.6.0
     312     * @var null
     313     */
    299314    var $src;
     315
     316    /**
     317     * An array of handle dependencies.
     318     *
     319     * @access public
     320     * @since 2.6.0
     321     * @var array
     322     */
    300323    var $deps = array();
     324
     325    /**
     326     * The handle version.
     327     *
     328     * Used for cache-busting.
     329     *
     330     * @access public
     331     * @since 2.6.0
     332     * @var bool|string
     333     */
    301334    var $ver = false;
    302     var $args = null;
    303 
     335
     336    /**
     337     * Additional arguments for the handle.
     338     *
     339     * @access public
     340     * @since 2.6.0
     341     * @var null
     342     */
     343    var $args = null;  // Custom property, such as $in_footer or $media.
     344
     345    /**
     346     * Extra data to supply to the handle.
     347     *
     348     * @access public
     349     * @since 2.6.0
     350     * @var array
     351     */
    304352    var $extra = array();
    305353
Note: See TracChangeset for help on using the changeset viewer.