WP_Scripts::all_deps() WordPress Method

The WP_Scripts::all_deps() method is used to retrieve all the dependencies for a given script. This includes both the registered dependencies and the dependencies that have been added inline with the script tags.

WP_Scripts::all_deps( string|string[] $handles, bool $recursion = false, int|false $group = false ) #

Determines script dependencies.


Description

Top ↑

See also


Top ↑

Parameters

$handles

(string|string[])(Required)Item handle (string) or item handles (array of strings).

$recursion

(bool)(Optional) Internal flag that function is calling itself.

Default value: false

$group

(int|false)(Optional) Group level: level (int), no groups (false).

Default value: false


Top ↑

Return

(bool) True on success, false on failure.


Top ↑

Source

File: wp-includes/class.wp-scripts.php

640
641
642
643
644
645
646
647
648
649
650
651
652
653
public function all_deps( $handles, $recursion = false, $group = false ) {
    $r = parent::all_deps( $handles, $recursion, $group );
    if ( ! $recursion ) {
        /**
         * Filters the list of script dependencies left to print.
         *
         * @since 2.3.0
         *
         * @param string[] $to_do An array of script dependency handles.
         */
        $this->to_do = apply_filters( 'print_scripts_array', $this->to_do );
    }
    return $r;
}


Top ↑

Changelog

Changelog
VersionDescription
2.1.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by the Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.