You are here

public function YamlFormThirdPartySettingsManager::alter in YAML Form 8

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

Loads all form third party settings before execute alter hooks.

Overrides YamlFormThirdPartySettingsManagerInterface::alter

See also

\Drupal\yamlform\YamlFormThirdPartySettingsManager::__construct

File

src/YamlFormThirdPartySettingsManager.php, line 95

Class

YamlFormThirdPartySettingsManager
Form third party settings manager.

Namespace

Drupal\yamlform

Code

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