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 but I cannot find how to access the value.
Hi,
this tutorial could be helpful
Regards
[QUOTE=Marco Steinhaeuser;101275]
this tutorial could be helpful
[/QUOTE]
unfortunately: no - it can’t be helpful
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!