public function UnsavedIndexConfiguration::getThirdPartySettings in Search API 8
Gets all third-party settings of a given module.
Parameters
string $module: The module providing the third-party settings.
Return value
array An array of key-value pairs.
Overrides ThirdPartySettingsInterface::getThirdPartySettings
File
- src/
UnsavedIndexConfiguration.php, line 1097
Class
- UnsavedIndexConfiguration
- Represents a configuration of an index that was not yet permanently saved.
Namespace
Drupal\search_apiCode
public function getThirdPartySettings($module) {
return $this->entity
->getThirdPartySettings($module);
}