You are here

public function FeaturesManager::getExportSettings in Features 8.3

Same name and namespace in other branches
  1. 8.4 src/FeaturesManager.php \Drupal\features\FeaturesManager::getExportSettings()

Returns the current export settings.

Return value

array An array with the following keys:

  • 'folder' - subdirectory to export packages to.
  • 'namespace' - module namespace being exported.

Overrides FeaturesManagerInterface::getExportSettings

1 call to FeaturesManager::getExportSettings()
FeaturesManager::getExportInfo in src/FeaturesManager.php
Returns the full machine name and directory for exporting a package.

File

src/FeaturesManager.php, line 389

Class

FeaturesManager
The FeaturesManager provides helper functions for building packages.

Namespace

Drupal\features

Code

public function getExportSettings() {
  return $this->settings
    ->get('export');
}