Newer
Older
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
<?php
class Game1SignupMethod extends SignupMethod {
public static function getName() {
return "Das Dorf [working title]";
}
public static function getAltText() {
return "Ein Spiel mit Rittern, Schloss und Dorf! [Empfohlene Methode]";
}
public static function getMetaInfo() {
return [
"version" => '1.1',
"date" => '20.09.2014',
"contributors" => ['Tim Repke <tim@repke.eu>']
];
}
public function getJSDependencies() {
return [];
}
public function getCSSDependencies() {
return [];
}
public function getAdditionalHeader() {
return '';
}
public function showInlineHTML() {
}
}