-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathviewCharData.php
38 lines (33 loc) · 1.29 KB
/
viewCharData.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
<!DOCTYPE HTML>
<html>
<head>
<title>UESP:ESO Character Data</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<style type="text/css">>
body {
background-color: #FBEFD5;
font-family: sans-serif;
font-size: 13px;
}
</style>
<link rel="stylesheet" href="//esobuilds-static.uesp.net/resources/esobuilddata.css" />
<link rel="stylesheet" href="//esolog-static.uesp.net/resources/esoitemlink.css" />
<link rel="stylesheet" href="//esolog-static.uesp.net/resources/esoitemlink_embed.css" />
<script type="text/javascript" src="//esobuilds-static.uesp.net/resources/jquery-1.10.2.js"></script>
<script type="text/javascript" src="//esobuilds-static.uesp.net/resources/jquery.tablesorter.min.js"></script>
<script type="text/javascript" src="//esobuilds-static.uesp.net/resources/esobuilddata.js"></script>
<script type="text/javascript" src="//esobuilds-static.uesp.net/resources/esobuilddata_itemlink.js"></script>
</head>
<body>
<?php
require_once("viewCharData.class.php");
$charDataViewer = new EsoCharDataViewer();
$charDataViewer->includeSetSkillData = true;
print($charDataViewer->getOutput());
?>
<hr />
<div id='ecdFooter'>
Created and hosted by the <a href="//www.uesp.net">UESP</a>.
</div>
</body>
</html>