public function UnsavedIndexConfiguration::setThirdPartySetting in Search API 8
Sets the value of a third-party setting.
Parameters
string $module: The module providing the third-party setting.
string $key: The setting name.
mixed $value: The setting value.
Return value
$this
Overrides ThirdPartySettingsInterface::setThirdPartySetting
File
- src/
UnsavedIndexConfiguration.php, line 1082
Class
- UnsavedIndexConfiguration
- Represents a configuration of an index that was not yet permanently saved.
Namespace
Drupal\search_apiCode
public function setThirdPartySetting($module, $key, $value) {
$this->entity
->setThirdPartySetting($module, $key, $value);
return $this;
}