-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathlistings_menu.php
23 lines (17 loc) · 1.13 KB
/
listings_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
<?php
include_once("includes/inc.global.php");
$p->site_section = LISTINGS;
$p->page_title = _("Update Listings");
$cUser->MustBeLoggedOn();
$list = "<STRONG>"._("Offered Listings")."</STRONG><P>";
$list .= "<A HREF=listing_create.php?type=Offer&mode=self><FONT SIZE=2>"._("Create New Offer Listing")."</FONT></A><BR>";
$list .= "<A HREF=listing_to_edit.php?type=Offer&mode=self><FONT SIZE=2>"._("Edit Offered Listings")."</FONT></A><BR>";
$list .= "<A HREF=listing_delete.php?type=Offer&mode=self><FONT SIZE=2>"._("Delete Offered Listings")."</FONT></A><P>";
$list .= "<STRONG>"._("Wanted Listings")."</STRONG><P>";
$list .= "<A HREF=listing_create.php?type=Want&mode=self><FONT SIZE=2>"._("Create New Want Listing")."</FONT></A><BR>";
$list .= "<A HREF=listing_to_edit.php?type=Want&mode=self><FONT SIZE=2>"._("Edit Wanted Listings")."</FONT></A><BR>";
$list .= "<A HREF=listing_delete.php?type=Want&mode=self><FONT SIZE=2>"._("Delete Wanted Listings")."</FONT></A><P>";
$list .= "<STRONG>"._("Miscellaneous")."</STRONG><P>";
$list .= "<A HREF=holiday.php?mode=self><FONT SIZE=2>"._("Going on Holiday")."</FONT></A><BR>";
$p->DisplayPage($list);
?>