1
i have a single custom page..how do i protect this page so only
admin or
certain group can see this page...
le="color: #000000"><?php include("../../mainfile.php"); include(XOOPS_ROOT_PATH."/header.php"); $meta_keywords = ""; $meta_description = ""; $pagetitle = ""; if(isset($xoTheme) && is_object($xoTheme)) { $xoTheme->addMeta( 'meta', 'keywords', $meta_keywords); $xoTheme->addMeta( 'meta', 'description', $meta_description); } else { // Compatibility for old Xoops versions $xoopsTpl->assign('xoops_meta_keywords', $meta_keywords); $xoopsTpl->assign('xoops_meta_description', $meta_description); } $xoopsTpl->assign('xoops_pagetitle', $pagetitle); //this will only work if your theme is using this smarty variables $xoopsTpl->assign( 'xoops_showlblock', 0); //set to 0 to hide left blocks $xoopsTpl->assign( 'xoops_showrblock', 0); //set to 0 to hide right blocks $xoopsTpl->assign( 'xoops_showcblock', 1); //set to 0 to hide center blocks include(XOOPS_ROOT_PATH."/footer.php");