-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathshops-categories.php
59 lines (53 loc) · 2.01 KB
/
shops-categories.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
$clock = true;
htmlHeader();
htmlDropDown(2);
echo <<<EOF
</div>
<div id="content">
<br/>
EOF;
//
// Shops List
//
echo <<<EOF
<table class="tbl tbl-ahcats">
<thead><tr class="tbl-head">
<th colspan="3" id="ahcat"><i class="fa fa-shopping-basket" aria-hidden="true"></i> Custom Shops List</th>
</tr></thead>
<tbody><tr>
<td><table><tr>
<td>Mogshops</td>
</tr><tr>
<td class="indent"><a class="link shoplink" data-id="1"><span>Cystal Depot</span></a></td>
</tr><tr>
<td class="indent"><a class="link shoplink" data-id="2"><span>Pharmacy</span></a></td>
</tr><tr>
<td class="indent"><a class="link shoplink" data-id="3"><span>MogDonald's</span></a></td>
</tr><tr>
<td class="indent"><a class="link shoplink" data-id="4"><span>Tools</span></a></td>
</tr><tr>
<td class="indent"><a class="link shoplink" data-id="5"><span>National Hero Specials</span></a></td>
</tr><tr>
<td class="indent"><a class="link shoplink" data-id="6"><span>Mighty Hero Specials</span></a></td>
</tr><tr>
<td class="indent"><a class="link shoplink" data-id="7"><span>Chains-Breaker Specials</span></a></td>
</tr></table>
</td><td> </td><td style="vertical-align:top;">
<table><tr>
<td>Curio Vendor Moogles</td>
</tr><tr>
<td class="indent"><a class="link shoplink" data-id="10"><span>AF1 Vendor</span></a></td>
<!-- </tr><tr>
<td class="indent"><a class="link shoplink" data-id="11"><span>..</span></a></td>
</tr><tr>
<td class="indent"><a class="link shoplink" data-id="12"><span>.</span></a></td> -->
</tr></table></td>
</tr></tbody>
</table>
EOF;
// Footer
echo " <div id=\"toTop\"><i class=\"fa fa-caret-square-o-up\" aria-hidden=\"true\"></i></div>";
echo " </div>";
htmlFooter();
?>