1
How can i add two smarty variables that checks whether it is on home page or on a module page.
I have added the following code to header.php
$xoopsTpl->assign( 'xoops_ishome', !empty($aggreg->blocks['page_topcenter']) || !empty($aggreg->blocks['page_topleft']) || !empty($aggreg->blocks['page_topright']) );
and placed $xoopsOption['ishome'] =1; in index.php. and used the following code in theme.html
<{if $xoops_ishome ==1}>
......
<{/if}>
It worked fine but failed when there is call to header file from modules.
Is there any good solution to check this?
Thanks