forked from MattsShack/Plex-Movie-Poster-Display
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.php
59 lines (52 loc) · 2.17 KB
/
config.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
<?php
//PMPD Config
$pmpConfigVersion = '2';
$pmpUsername = 'admin';
$pmpPassword = 'password1';
$pmpClearImageCache = 'Yes'; //Default Yes
$pmpImageSpeed = '30'; //Default 30 Seconds
$pmpPosterDir = 'cache/posters/'; //Default cache/posters/ (FUTURE)
$pmpCustomDir = 'cache/custom/'; //Default cache/custom/ (FUTURE)
//Server Configuration
$plexServer = '';
$plexToken = '';
$plexServerMovieSection = '';
//Cleint Configuration
$plexClient = '';
//Custom Image
$customImageEnabled = 'Disabled'; //Default Disabled
$customImage = '';
$customTopText = 'CUSTOM TOP TEXT';
$customTopFontSize = '55'; //Default 55
$customTopFontColor = '#FFFFFF'; //Default #FFFFFF (White)
$customTopFontOutlineSize = '2'; //Default 2p
$customTopFontOutlineColor = '#FFFF00'; //Default #FFFF00 (Yellow)
$customBottomText = 'CUSTOM BOTTOM TEXT';
$customBottomFontSize = '25'; //Default 25
$customBottomFontColor = '#FFFFFF'; //Default #FFFFFF (White)
//Coming Soon Config
$comingSoonTopText = 'COMING SOON';
$comingSoonTopFontSize = '55'; //Default 55
$comingSoonTopFontColor = '#FFFF00'; //Default Yellow
$comingSoonTopFontOutlineColor = '#FFFF00'; //Default Yellow
$comingSoonTopFontOutlineSize = '2'; //Default 2
$comingSoonBottomText = 'www.mattsshack.com';
$comingSoonBottomFontSize = '55'; //Default 55
$comingSoonBottomFontColor = '#FFFFFF'; //Default #FFFFFF (White)
$comingSoonShowSelection = 'unwatched'; //Default unwatched
//Now Showing Config
$nowShowingTopText = 'NOW SHOWING';
$nowShowingTopFontSize = '55'; //Default 55
$nowShowingTopFontColor = '#FFFF00'; //Default Yellow
$nowShowingTopFontOutlineSize = '2'; //Default 2
$nowShowingTopFontOutlineColor = '#FFFF00'; //Default Yellow
$nowShowingBottomFontSize = '25'; //Default 25
$nowShowingBottomFontColor = '#FFFFFF'; //Default #FFFFFF (White)
//Misc
$pmpDisplayProgress = 'Disabled'; //Default Disabled
$pmpDisplayProgressSize = '5'; //Default 5
$pmpDisplayProgressColor = '#FFF300'; //Default #FFF300
$pmpDisplayClock = 'Disabled'; //Default Disabled (FUTURE)
$pmpBottomScroll = 'Disabled'; //Default Disabled
$pmpBottomScrollSpeed = '1'; //Default 1 (FUTURE)
?>