You are here

public function UnsavedIndexConfiguration::getThirdPartySetting in Search API 8

Gets the value of a third-party setting.

Parameters

string $module: The module providing the third-party setting.

string $key: The setting name.

mixed $default: The default value

Return value

mixed The value.

Overrides ThirdPartySettingsInterface::getThirdPartySetting

File

src/UnsavedIndexConfiguration.php, line 1090

Class

UnsavedIndexConfiguration
Represents a configuration of an index that was not yet permanently saved.

Namespace

Drupal\search_api

Code

public function getThirdPartySetting($module, $key, $default = NULL) {
  return $this->entity
    ->getThirdPartySetting($module, $key, $default);
}