-
Notifications
You must be signed in to change notification settings - Fork 0
/
enums.php
62 lines (58 loc) · 1.52 KB
/
enums.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
55
56
57
58
59
60
61
62
<?php
abstract class ImageType
{
const PRIMARY = 'Primary';
const BANNER = 'Banner';
const THUMB = 'Thumb';
const LOGO = 'Logo';
const BACKDROP = 'Backdrop';
}
abstract class ItemType
{
const BOXSET = 'BoxSet';
const SERIES = 'Series';
const SEASON = 'Season';
const EPISODE = 'Episode';
const RECORDING = 'Recording';
const MOVIE = 'Movie';
const PERSON = 'Person';
const ACTOR = 'Actor';
const GUESTSTAR = 'GuestStar';
const STUDIO = 'Studio';
const COLLECTIONFOLDER = 'CollectionFolder';
const FOLDER = 'Folder';
const PLAYLIST = 'Playlist';
const USERVIEW = 'UserView';
const MUSICVIDEO = 'MusicVideo';
}
abstract class CollectionType
{
const MOVIES = 'movies';
const TVSHOWS = 'tvshows';
const MUSIC = 'music';
const MUSICVIDEOS = 'musicvideos';
const HOMEVIDEOS = 'homevideos';
const BOXSETS = 'boxsets';
const FOLDERS = 'folders';
const PLAYLISTS = 'playlists';
}
abstract class ExtrasType
{
const SPECIALFEATURES = 'SpecialFeatures';
const LOCALTRAILERS = 'LocalTrailers';
const INTROS = 'Intros';
const ADDITIONALPARTS = 'AdditionalParts';
}
$prettySpecialFeatures = [
'Clip' => 'Clip',
'Featurette' => 'Featurette',
'Short' => 'Short',
'Trailer' => 'Trailer',
'BehindTheScenes' => 'Behind the Scenes',
'DeletedScene' => 'Deleted Scene',
'Interview' => 'Interview',
'Scene' => 'Scene',
'Sample' => 'Sample',
'ThemeSong' => 'Theme Song',
'ThemeVideo' => 'Theme Video'
];