-
Notifications
You must be signed in to change notification settings - Fork 6
/
exchange_menu.php
24 lines (18 loc) · 1.23 KB
/
exchange_menu.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
include_once("includes/inc.global.php");
include_once("classes/class.trade.php");
$p->site_section = EXCHANGES;
$p->page_title = _("Exchanges");
$cUser->MustBeLoggedOn();
$pending = new cTradesPending($_SESSION["user_login"]);
$list = "<A HREF=trades_pending.php><FONT SIZE=2>"._("Invoices and Transactions Pending")."</a> (".$pending->numIn." "._("require action").")</FONT><P>";
$list .= "<A HREF=trade.php?mode=self><FONT SIZE=2>"._("Record an Exchange")."</FONT></A><BR>";
$list .= "<A HREF=trade_history.php?mode=self><FONT SIZE=2>"._("View My Balance and Exchange History")."</FONT></A><BR>";
$list .= "<A HREF=trades_to_view.php><FONT SIZE=2>"._("View Another Member's Exchange History")."</FONT></A><BR>";
$list .= "<A HREF=feedback_all.php?mode=self><FONT SIZE=2>"._("View My Feedback")."</FONT></A><BR>";
$list .= "<A HREF=feedback_to_view.php><FONT SIZE=2>"._("View Another Member's Feedback")."</FONT></A><BR>";
$list .= "<A HREF=feedback_choose.php?mode=self><FONT SIZE=2>"._("Leave Feedback for a Recent Exchange")."</FONT></A><BR>";
if ($cUser->HasLevel(1))
$list .= "<A HREF=timeframe_choose.php?action=trade_history_all><FONT SIZE=2>"._("View All Trades in a Specified Time Period")."</FONT></A>";
$p->DisplayPage($list);
?>