You are here

WebformThirdPartySettingsManagerInterface.php in Webform 6.x

Same filename and directory in other branches
  1. 8.5 src/WebformThirdPartySettingsManagerInterface.php

Namespace

Drupal\webform

File

src/WebformThirdPartySettingsManagerInterface.php
View source
<?php

namespace Drupal\webform;

use Drupal\Core\Config\Entity\ThirdPartySettingsInterface;

/**
 * Defines an interface for webform third party settings manager classes.
 */
interface WebformThirdPartySettingsManagerInterface extends ThirdPartySettingsInterface {

  /**
   * Wrapper for \Drupal\Core\Extension\ModuleHandlerInterface::alter.
   *
   * Loads all webform third party settings before execute alter hooks.
   *
   * @see \Drupal\webform\WebformThirdPartySettingsManager::__construct
   */
  public function alter($type, &$data, &$context1 = NULL, &$context2 = NULL);

}

Interfaces

Namesort descending Description
WebformThirdPartySettingsManagerInterface Defines an interface for webform third party settings manager classes.