1
Hello
i want to use the Value of $xoopsModuleConfig['something']
inside a block function .. how so?
for example.
function b_something_blocks_show($options) {
global $xoopsDB, $xoopsModuleConfig;
$block['test'] = $xoopsModuleConfig['something'];
return $block;
}
function b_something_blocks_edit($options) {
$form = "
test Option: ";
return $form;
}