You are here

public function ContentSyncSettings::setEmbedEntities 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::setEmbedEntities()
  2. 2.0.x src/Controller/ContentSyncSettings.php \Drupal\cms_content_sync\Controller\ContentSyncSettings::setEmbedEntities()

Parameters

string[] $set:

File

src/Controller/ContentSyncSettings.php, line 120

Class

ContentSyncSettings
Class ContentSyncSettings.

Namespace

Drupal\cms_content_sync\Controller

Code

public function setEmbedEntities($set) {
  $this->configFactory
    ->getEditable('cms_content_sync.settings')
    ->set('cms_content_sync_embed_entities', $set)
    ->save();
  $this->embedEntities = $set;
}