You are here

public function WebformLibrariesManager::getExcludedLibraries in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/WebformLibrariesManager.php \Drupal\webform\WebformLibrariesManager::getExcludedLibraries()

Get excluded libraries.

Return value

array A keyed array of excluded libraries.

Overrides WebformLibrariesManagerInterface::getExcludedLibraries

1 call to WebformLibrariesManager::getExcludedLibraries()
WebformLibrariesManager::isExcluded in src/WebformLibrariesManager.php
Determine if library is excluded.

File

src/WebformLibrariesManager.php, line 285

Class

WebformLibrariesManager
Webform libraries manager.

Namespace

Drupal\webform

Code

public function getExcludedLibraries() {

  // Initialize excluded libraries.
  if (!isset($this->excludedLibraries)) {
    $this->excludedLibraries = $this
      ->initExcludedLibraries();
  }
  return $this->excludedLibraries;
}