Issue #2367661 by swentel: Fixed Follow up: ThirdPartySettingsTraitInterface missing getThirdPartySettings() method.

8.0.x
Alex Pott 2014-11-03 10:21:13 +00:00
parent 537e465b9c
commit 6db76f529f
1 changed files with 12 additions and 0 deletions

View File

@ -46,6 +46,18 @@ interface ThirdPartySettingsInterface {
*/
public function getThirdPartySetting($module, $key, $default = NULL);
/**
* Gets all third-party settings of a given module.
*
* @param string $module
* The module providing the third-party settings.
*
* @return array
* An array of key-value pairs.
*/
public function getThirdPartySettings($module);
/**
* Unsets a third-party setting.
*