-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
46 lines (32 loc) · 1010 Bytes
/
index.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
<?php
/////////////////////////////////////////////
/////////////////////////////////////////////
/////// Magic The Gathering Thief ///////////
/////////////////////////////////////////////
/////////////////////////////////////////////
// Just Edit the document index.php in the function STOLE the edition you want Stole.
// Here some SLUG'S you can enter: "Magic+2013", "Magic+2012", "Theros", "Invasion" ....
// Fork me in Github : https://github.com/pinguineras
// http://www.nopasse.com.br - Brazilian Magic Deck Builder with CSS and JS.
require_once('inc/Thief.Class.php');
$Thief = new mtgcardThief();
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Magic Thief</title>
</head>
<body>
<div id="geral">
<h1>MTG Card List by Edition</h1>
<?php
$Cards = $Thief->Stole();
var_dump($Cards);
?>
</div>
<div align="center">
<p><a href="https://github.com/pinguineras">https://github.com/pinguineras</a></p>
</div>
</body>
</html>