Skip to content

Instantly share code, notes, and snippets.

@init90
Last active May 5, 2018 20:57
Show Gist options
  • Select an option

  • Save init90/147eea693b633efeb0bc6f3057312983 to your computer and use it in GitHub Desktop.

Select an option

Save init90/147eea693b633efeb0bc6f3057312983 to your computer and use it in GitHub Desktop.
Drupal 8. Save logo settings to config for every domain.
$config = \Drupal::service('config.factory')->getEditable("domain.config.{$domain_machine_name}.omni_magazine.settings");
$config->set('logo', array('use_default' => FALSE, 'path' => drupal_realpath($file->getFileUri())));
$config->save();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment