-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathISteamHub.php
49 lines (43 loc) · 1.72 KB
/
ISteamHub.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
<?php
include_once("./template/init.php");
$page['title'] = "Steam WebAPI Proposal · ISteamHub";
$page['desc'] = "ISteamHub, a proposal WebAPI interface for Steam Community Hubs. Authored by John 'Seg' Seggerson.";
include_once("./template/html_start.php");
?>
<header class="jumbotron subhead" id="overview">
<div class="container">
<h1><i class="icon-group"></i> ISteamHub</h1>
<p class="lead">A Steam WebAPI interface for Steam Community Hubs.</p>
</div>
</header>
<div class="container">
<!-- Docs Nav -->
<section id="navigation">
<div class="subnav">
<ul class="nav nav-pills">
<li><a href="#top"><i class="icon-collapse-top"></i></a></li>
<li><a href="#General">Notes</a></li>
<li><a href="#ResolveVanityURL">::ResolveVanityURL</a></li>
<li><a href="#ResolveAppID">::ResolveAppID</a></li>
<li><a href="#GetSummaries">::GetSummaries</a></li>
<li><a href="#GetAnnouncements">::GetAnnouncements</a></li>
<li><a href="#GetEvents">::GetEvents</a></li>
<li><a href="#GetStatus">::GetStatus</a></li>
<li><a href="#GetMembers">::GetMembers</a></li>
<li><a href="#GetPermissions">::GetPermissions</a></li>
</ul>
</div>
</section>
<?php
include("./docs/ISteamHub/General.php");
include("./docs/ISteamHub/ResolveVanityURL.php");
include("./docs/ISteamHub/ResolveAppID.php");
include("./docs/ISteamHub/GetSummaries.php");
include("./docs/ISteamHub/GetAnnouncements.php");
include("./docs/ISteamHub/GetEvents.php");
include("./docs/ISteamHub/GetStatus.php");
include("./docs/ISteamHub/GetMembers.php");
include("./docs/ISteamHub/GetPermissions.php");
?>
</div>
<?php include_once("./template/html_end.php"); ?>