1
Hello, I have a custom module that i have made with files:
index.php
xoops_version.php
logo.gif
the contents of index.php are:
include("../../mainfile.php");
include(XOOPS_ROOT_PATH."/header.php");
$xoopsOption['show_rblock'] = 1;
?>
include(XOOPS_ROOT_PATH."/footer.php");
?>
I mainly use this module to display custom blocks on it that will reflect its contents.
I want to use a different theme for this particular module.
I am not a php guy, more like a VB guy. so i was thinking, is it possible to use a variable, like the module's name in the theme file or in header.php so that:
If ModuleName = "mymodule" then theme=themename
if thats not possible, do you have any other method I could use ??
please advise.
regards
BCdudes