-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.php
49 lines (37 loc) · 1.23 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
<?php
include_once 'enums.php';
date_default_timezone_set('America/Chicago');
$theme_css = "dark.css";
$dynamicGridPage = true;
$rewatchingUserIDs = array();
//LOCALIZATION!!!
//Collection type names. Users can localize for non-english
//only used on page title for filtered views.
//example 'TV Shows - M'
$collectiontypeNames = array(
CollectionType::TVSHOWS => 'TV Shows', CollectionType::MOVIES => 'Movies', CollectionType::BOXSETS => 'Collections',
CollectionType::PLAYLISTS => 'Playlists', CollectionType::MUSICVIDEOS => 'Music Videos'
);
// ExtraTypes to display before the parent episode
$before_episode_extra_types = array('');
//Default TVIDs
$tvid_page_index = 'HOME';
$tvid_page_categories = 'INFO';
$tvid_page_pgup = 'PGUP';
$tvid_page_pgdn = 'PGDN';
//to map a button to javascript:window.history.back();
$tvid_page_back = '';
$tvid_page_browse = 'YELLOW';
$tvid_filter_menu = 'TAB';
$tvid_season_play = 'PLAY';
$tvid_season_info = 'INFO';
$tvid_season_pgup = 'PGUP';
$tvid_season_pgdn = 'PGDN';
$tvid_season_itemdetails = 'RED';
$tvid_season_series = 'BLUE';
$tvid_itemdetails_play = 'PLAY';
$tvid_itemdetails_more = 'RED';
if (file_exists('config_local.php')) {
// Include the file
include_once('config_local.php');
}