You are here

public function StaticMenuLinkOverrides::reload in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Menu/StaticMenuLinkOverrides.php \Drupal\Core\Menu\StaticMenuLinkOverrides::reload()

Reloads the overrides from config.

Forces all overrides to be reloaded from config storage to compare the override value with the value submitted during test form submission.

Overrides StaticMenuLinkOverridesInterface::reload

File

core/lib/Drupal/Core/Menu/StaticMenuLinkOverrides.php, line 70
Contains \Drupal\Core\Menu\StaticMenuLinkOverrides.

Class

StaticMenuLinkOverrides
Defines an implementation of the menu link override using a config file.

Namespace

Drupal\Core\Menu

Code

public function reload() {
  $this->config = NULL;
  $this->configFactory
    ->reset($this->configName);
}