Issue #2367661 by swentel: Fixed Follow up: ThirdPartySettingsTraitInterface missing getThirdPartySettings() method.
parent
537e465b9c
commit
6db76f529f
|
@ -46,6 +46,18 @@ interface ThirdPartySettingsInterface {
|
||||||
*/
|
*/
|
||||||
public function getThirdPartySetting($module, $key, $default = NULL);
|
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.
|
* Unsets a third-party setting.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue