LibraryDependencyResolver::getLibrariesWithDependencies

public LibraryDependencyResolver::getLibrariesWithDependencies(array $libraries)

Gets the given libraries with their dependencies.

Given ['core/a', 'core/b', 'core/c'], with core/a depending on core/c and core/b on core/d, returns ['core/a', 'core/b', 'core/c', 'core/d'].

Parameters

string[] $libraries: A list of libraries, in the order they should be loaded.

Return value

string[] A list of libraries, in the order they should be loaded, including their dependencies.

Overrides LibraryDependencyResolverInterface::getLibrariesWithDependencies

File

core/lib/Drupal/Core/Asset/LibraryDependencyResolver.php, line 30

Class

LibraryDependencyResolver
Resolves the dependencies of asset (CSS/JavaScript) libraries.

Namespace

Drupal\Core\Asset

Code

public function getLibrariesWithDependencies(array $libraries) {
  return $this->doGetDependencies($libraries);
}
doc_Drupal
2016-10-29 09:23:05
Comments
Leave a Comment

Please login to continue.