You are here

private function TaxonomiesController::getEditableConfig in Structure Sync 8

Same name and namespace in other branches
  1. 2.x src/Controller/TaxonomiesController.php \Drupal\structure_sync\Controller\TaxonomiesController::getEditableConfig()

Gets the editable version of the config.

1 call to TaxonomiesController::getEditableConfig()
TaxonomiesController::__construct in src/Controller/TaxonomiesController.php
Constructor for taxonomies controller.

File

src/Controller/TaxonomiesController.php, line 28

Class

TaxonomiesController
Controller for syncing taxonomy terms.

Namespace

Drupal\structure_sync\Controller

Code

private function getEditableConfig() {
  $this
    ->config('structure_sync.data');
  return $this->configFactory
    ->getEditable('structure_sync.data');
}