You are here

public function WebformThirdPartySettingsManager::alter in Webform 8.5

Same name and namespace in other branches
  1. 6.x src/WebformThirdPartySettingsManager.php \Drupal\webform\WebformThirdPartySettingsManager::alter()

Wrapper for \Drupal\Core\Extension\ModuleHandlerInterface::alter.

Loads all webform third party settings before execute alter hooks.

Overrides WebformThirdPartySettingsManagerInterface::alter

See also

\Drupal\webform\WebformThirdPartySettingsManager::__construct

File

src/WebformThirdPartySettingsManager.php, line 77

Class

WebformThirdPartySettingsManager
Webform third party settings manager.

Namespace

Drupal\webform

Code

public function alter($type, &$data, &$context1 = NULL, &$context2 = NULL) {
  $this->moduleHandler
    ->alter($type, $data, $context1, $context2);
}