You are here

public function BlazyManagerBase::getCommonSettings in Blazy 8

Same name and namespace in other branches
  1. 8.2 src/BlazyManagerBase.php \Drupal\blazy\BlazyManagerBase::getCommonSettings()
  2. 7 src/BlazyManagerBase.php \Drupal\blazy\BlazyManagerBase::getCommonSettings()

Returns the common settings inherited down to each item.

1 call to BlazyManagerBase::getCommonSettings()
BlazyFormatterManager::buildSettings in src/BlazyFormatterManager.php
Returns the field formatter settings inherited by child elements.

File

src/BlazyManagerBase.php, line 217

Class

BlazyManagerBase
Implements BlazyManagerInterface.

Namespace

Drupal\blazy

Code

public function getCommonSettings() {
  return array_intersect_key($this
    ->configLoad('', 'blazy.settings'), BlazyDefault::uiSettings());
}