You are here

public function ContentSyncSettings::setExtendedEntityImportLogging in CMS Content Sync 8

Same name and namespace in other branches
  1. 2.1.x src/Controller/ContentSyncSettings.php \Drupal\cms_content_sync\Controller\ContentSyncSettings::setExtendedEntityImportLogging()
  2. 2.0.x src/Controller/ContentSyncSettings.php \Drupal\cms_content_sync\Controller\ContentSyncSettings::setExtendedEntityImportLogging()

Set the Extended Entity Import Logging setting.

Parameters

mixed $value:

File

src/Controller/ContentSyncSettings.php, line 479

Class

ContentSyncSettings
Class ContentSyncSettings.

Namespace

Drupal\cms_content_sync\Controller

Code

public function setExtendedEntityImportLogging($value) {
  $key_value_db = \Drupal::service('keyvalue.database');
  $key_value_db
    ->get('cms_content_sync_debug')
    ->set('extended_entity_import_logging', $value);
}