if(strstr("forum/", FUSION_REQUEST)){
//Panelcode (will only be executed in the forum)
}
if(strstr("viewpage.php", FUSION_REQUEST) && isset($_GET['page_id']) && $_GET['page_id'] == 1){
//Panelcode (will only be executed on the page with ID 1)
}
if ( FUSION_SELF == "viewpage.php" ) {}
$requesturi = isset($_SERVER['REQUEST_URI']) ? cleanurl($_SERVER['REQUEST_URI']) : "";
$current_dir = dirname($requesturi)."/";
if ($current_dir =="/forum/") {
echo "Code To Show On All Forum Pages Here";
}
echo "Code To Show On All Forum Pages Here";
if ( FUSION_SELF == "downloads.php?cat_id=41" ) {
openside("NEW/TOP");
include THEME."downloads.php";
closeside();
}
if (isset($_GET['cat_id']) && $_GET['cat_id'] == 41){
opentable("NEW/TOP");
include THEME."downloads.php";
closetable();
}
Category Forum
Panels and InfusionsLabels
None yet
Statistics
4 participants
Notifications
You are not receiving notifications from this thread.
Related Questions