forked from MediaFrontPage/mediafrontpage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault-layout.php
executable file
·81 lines (79 loc) · 1.52 KB
/
default-layout.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?php
$arrLayout = array(
"section1" => array(
"wComingEpisodes" => array(
"title" => "Coming Episodes",
"display" => ""
)
),
"section2" => array(
"wXBMCLibrary" => array(
"title" => "XBMC Library",
"display" => ""
),
"wRecentTV" => array(
"title" => "Recent TV",
"display" => ""
),
"wRecentMovies" => array(
"title" => "Recent Movies",
"display" => ""
),
),
"section3" => array(
"wSearch" => array(
"title" => "Search",
"display" => ""
),
"wRSS" => array(
"title" => "RSS Feed",
"display" => ""
),
"wHardDrives" => array(
"title" => "Hard Drives",
"display" => ""
),
"wControl" => array(
"title" => "Control",
"display" => ""
)
),
"section4" => array(
"wTransmission" => array(
"title" => "Transmission",
"display" => ""
),
"wSabnzbd" => array(
"title" => "Sabnzbd",
"display" => ""
),
"wjDownloader" => array(
"title" => "jDownloader",
"display" => ""
),
"wMessage" => array(
"title" => "XBMC Message",
"display" => ""
),
"wNowPlaying" => array(
"title" => "Now Playing",
"display" => ""
),
"wTrakt" => array(
"title" => "trakt.tv",
"display" => "collapsed"
),
"wSystem" => array(
"title" => "System info",
"display" => "collapsed"
),
)
);
//UPS Widget
/*
"wUPS" => array(
"title" => "UPS Status Monitor",
"display" => ""
)
*/
?>