function TestInstallStorage::getAllFolders

Same name and namespace in other branches
  1. 11.x core/modules/config/tests/config_test/src/TestInstallStorage.php \Drupal\config_test\TestInstallStorage::getAllFolders()

File

core/modules/config/tests/config_test/src/TestInstallStorage.php, line 19

Class

TestInstallStorage
Tests configuration of profiles, modules and themes.

Namespace

Drupal\config_test

Code

protected function getAllFolders() {
  if (!isset($this->folders)) {
    $this->folders = $this->getCoreNames();
    $listing = new ExtensionDiscovery(\Drupal::root());
    $listing->setProfileDirectories([]);
    $this->folders += $this->getComponentNames($listing->scan('profile'));
    $this->folders += $this->getComponentNames($listing->scan('module'));
    $this->folders += $this->getComponentNames($listing->scan('theme'));
  }
  return $this->folders;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.