How to access my module settings

Can you tell me how I can access my module settings? I definded a settings array in metadata.php containing a module option. This setting appears in the backend and I can chack and uncheck the checkbox :slight_smile: but I cannot find how to access the value.

Hi,

this tutorial could be helpful :wink:

Regards

[QUOTE=Marco Steinhaeuser;101275]
this tutorial could be helpful :wink:


[/QUOTE]

unfortunately: no - it can’t be helpful :slight_smile:
the function was described in another tutorial i can’t find anymore.

oxConfig has a function getConfigParam(),
e.g. if you called your setting “abc” and oxConfig is saved in $myConf
you can get the saved value with $myConf->getConfigParam(“abc”);

Thats it. Thank you very much!