File: 1.01.2a/server/web/view.link.php (View as Code)

1: 2: /* ------------------------------------------------------------- 3: This file is part of FreeNATS 4: 5: FreeNATS is (C) Copyright 2008 PurplePixie Systems 6: 7: FreeNATS is free software: you can redistribute it and/or modify 8: it under the terms of the GNU General Public License as published by 9: the Free Software Foundation, either version 3 of the License, or 10: (at your option) any later version. 11: 12: FreeNATS is distributed in the hope that it will be useful, 13: but WITHOUT ANY WARRANTY; without even the implied warranty of 14: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15: GNU General Public License for more details. 16: 17: You should have received a copy of the GNU General Public License 18: along with FreeNATS. If not, see www.gnu.org/licenses 19: 20: For more information see www.purplepixie.org/freenats 21: -------------------------------------------------------------- */ 22: 23: ob_start(); 24: require("include.php"); 25: $NATS->Start(); 26: if (!$NATS_Session->Check($NATS->DB)) 27: { 28: header("Location: ./?login_msg=Invalid+Or+Expired+Session"); 29: exit(); 30: } 31: if ($NATS_Session->userlevel<1) UL_Error("View Link"); 32: ob_end_flush(); 33: Screen_Header("View Links",1); 34: $vid=$_REQUEST['viewid']; 35: echo "Linking to View # ".$vid."
";
36: echo "Preview View | Edit View Settings

";
37: 38: $base=GetAbsolute("view.php?viewid=".$vid); 39: echo "URL: ".$base."
";
40: echo "URL:

";
41: 42: echo "JavaScript Include Example (Copy and paste into your page)
";
43: echo ""; 47: if (!isset($_REQUEST['jsdemo'])) 48: { 49: echo "

Demo this working

";
50: } 51: else 52: { 53: echo "

";
54: echo "\n"; 55: echo "

";
56: } 57: /* 58: echo "
";
 59: var_dump($_SERVER);
 60: echo "
";
61: */ 62: 63: echo "

";
64: Screen_Footer(); 65: ?>