-
Notifications
You must be signed in to change notification settings - Fork 0
/
class_db_map.php
54 lines (52 loc) · 1.45 KB
/
class_db_map.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
<?php
class db_map
{
public $map;
public function __construct()
{
/**
* Explanation how the MAP is constructed:
* Source:
*
* <?xml version="1.0" encoding="utf-8"?>
* <movie>
* <title>I Want to be Loved by You. Kaede Fuyutsuki</title>
* </movie>
*
* [
* 'tablename' => [
* 'columnname' => [
* 'content' => 'movie|title'
* ]
* ]
* ]
*/
$this->map = [
'title' => [
'title' => 'title',
'originaltitle' => 'originaltitle',
'sorttitle' => 'sorttitle',
'set' => 'set',
'year' => 'year',
'top250' => 'top250',
'trailer' => 'trailer',
'votes' => 'votes',
'rating' => 'rating',
'outline' => 'outline',
'plot' => 'plot',
'tagline' => 'tagline',
'runtime' => 'runtime',
'releasedate' => 'releasedate',
'studio' => 'studio',
'thumb' => 'thumb',
'fanart' => 'fanart',
'mpaa' => 'mpaa',
'movie_id' => 'id',
'genre' => 'genre',
'actor' => 'actor',
'director' => 'director',
'added' => 'Added'
]
];
}
}