This repository has been archived by the owner on May 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
dashboard.php
407 lines (348 loc) · 21.6 KB
/
dashboard.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
<?php
include "logDir/login/Session.php";
if($epgMode==4)
$disableEpg = 'none';
if($noLive)
$disableLive = 'none';
if($noMovie)
$disableMovie = 'none';
if($noSeries)
$disableSeries = 'none';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/png" href="favicon.ico?<?php echo $version; ?>">
<!--<link rel="icon" type="image/png" href="assets/img/favicon.png">!-->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>
<?php echo $nameIptv; ?> Dashboard
</title>
<meta content='width=device-width, initial-scale=1.0, shrink-to-fit=no' name='viewport' />
<!-- Fonts and icons -->
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Roboto+Slab:400,700|Material+Icons" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css">
<!-- CSS Files -->
<link href="assets/css/material-dashboard.css?v=2.1.2" rel="stylesheet" />
<!-- CSS Just for demo purpose, don't include it in your project -->
<link href="assets/demo/demo.css" rel="stylesheet" />
</head>
<body class="">
<script src="assets/js/script.js"></script>
<script>
var h24 = <?php echo $_COOKIE["h24"]; ?>; // Don't forget the extra semicolon!
var shift = <?php echo $_COOKIE["shift"]; ?>; // Don't forget the extra semicolon!
var epg = <?php if($_COOKIE['epg']) echo 'true'; else echo 'false'; ?>; // Don't forget the extra semicolon!
var epgDB = <?php if($epgDb) echo 'true'; else echo 'false'; ?>; // Don't forget the extra semicolon!
var path = '<?php echo "{$path}"; ?>'; // Don't forget the extra semicolon!
var noEpg ='<?php echo $version; ?>'; // Don't forget the extra semicolon!
</script>
<div class="wrapper ">
<div class="sidebar" data-color="purple" data-background-color="white" data-image="assets/img/sidebar-1.jpg">
<!--
Tip 1: You can change the color of the sidebar using: data-color="purple | azure | green | orange | danger"
Tip 2: you can also add an image using data-image tag
-->
<div class="logo"><a href="" class="simple-text logo-normal">
<img src="logo.png?<?php echo $version; ?>" alt="" style="max-height: 50px;filter: drop-shadow(1px 1px 5px #6d6d6d);">
</a>
</div>
<div class="sidebar-wrapper">
<ul class="nav">
<li class="nav-item active ">
<a class="nav-link" href="#">
<i class="material-icons">dashboard</i>
<p>Dashboard</p>
</a>
</li>
<div class="dropdown-divider"></div>
<li class="nav-item ">
<a class="nav-link" href="javascript:void(0)" onclick="window.location='php/logout.php'">
<i class="material-icons">exit_to_app</i>
<p>Log out</p>
</a>
</li>
</ul>
</div>
</div>
<div class="main-panel">
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-transparent navbar-absolute fixed-top ">
<div class="container-fluid">
<div class="navbar-wrapper">
<a class="navbar-brand" href="javascript:;">Dashboard</a>
</div>
<button class="navbar-toggler" type="button" data-toggle="collapse" aria-controls="navigation-index" aria-expanded="false" aria-label="Toggle navigation">
<span class="sr-only">Toggle navigation</span>
<span class="navbar-toggler-icon icon-bar"></span>
<span class="navbar-toggler-icon icon-bar"></span>
<span class="navbar-toggler-icon icon-bar"></span>
</button>
</div>
</nav>
<!-- End Navbar -->
<div class="content">
<div class="container-fluid">
<div class="row">
<div class="card">
<div class="card-header card-header-tabs card-header-primary">
<div class="nav-tabs-navigation">
<div class="nav-tabs-wrapper" >
<h4 class="nav-tabs-title">Welcome <?php echo $user; ?> in <?php echo $nameIptv;?> Dashboard</h4>
</div>
</div>
</div>
<div class="card-body">
<br>
<div class="tab-content">
<div class="tab-pane active">
<table class="table">
<tbody>
<br/>
<div class="row" style="display:<?php echo $disableEpg; ?>">
<div class="col-lg3 col-md-3 col-sm-6">
<label>EPG Time:</label>
<div>
<label>
<input type="radio" id="epgtime_24" name="epgtime" value="24" checked=""> <span>24h</span>
</label>
<br>
<label>
<input type="radio" id="epgtime_12" name="epgtime" value="12"> <span>12h AM-PM</span>
</label>
<br>
</div>
</div>
<div class="col-lg3 col-md-2 col-sm-6">
<br>
<div class="form-group bmd-form-group is-filled" id="epgshift_box">
<label class="bmd-label-floating">EPG Shift</label>
<input type="text" id="epg_shift" class="form-control">
</div>
</div>
</div>
</tbody>
</table>
<div class="row">
<div class="col-lg-4 col-md-6 col-sm-6" style="display:<?php echo $disableLive; ?>">
<div class="card card-stats">
<div class="card-header card-header-warning card-header-icon" onclick="openBrowser(1)">
<div class="card-icon">
<i class="material-icons">live_tv</i>
</div>
<p class="card-category">Live Channels</p>
<h3 class="card-title" id="channels"><?php echo $_COOKIE['live']; ?></h3>
</div>
<div class="card-footer">
<a href="javascript:void(0)" onclick="openBrowser(1)">Open Live Player</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-6" style="display:<?php echo $disableMovie; ?>">
<div class="card card-stats">
<div class="card-header card-header-danger card-header-icon" onclick="openBrowser(2)">
<div class="card-icon">
<i class="material-icons">local_movies</i>
</div>
<p class="card-category">Movies</p>
<h3 class="card-title" id="vods"><?php echo $_COOKIE['movie']; ?></h3>
</div>
<div class="card-footer">
<a href="javascript:void(0)" onclick="openBrowser(2)">Open Movie Player</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-6" style="display:<?php echo $disableSeries; ?>">
<div class="card card-stats">
<div class="card-header card-header-info card-header-icon" onclick="openBrowser(3)">
<div class="card-icon">
<i class="material-icons">tv</i>
</div>
<p class="card-category">TV Series</p>
<h3 class="card-title" id="series"><?php echo $_COOKIE['series']; ?></h3>
</div>
<div class="card-footer">
<a href="javascript:void(0)" onclick="openBrowser(3)">Open TV Series Player</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<footer class="footer">
<div class="container-fluid">
<div class="copyright float-right">
©
<script>
document.write(new Date().getFullYear())
</script>, <?php echo $nameIptv;?> - Powered by <a href="https://streamity.tv">Streamity.tv</a>
</div>
</div>
</footer>
</div>
</div>
<!-- Core JS Files -->
<script src="assets/js/core/jquery.min.js"></script>
<script src="assets/js/core/popper.min.js"></script>
<script src="assets/js/core/bootstrap-material-design.min.js"></script>
<script src="assets/js/plugins/perfect-scrollbar.jquery.min.js"></script>
<!-- Forms Validations Plugin -->
<script src="assets/js/plugins/jquery.validate.min.js"></script>
<!-- Plugin for the Wizard, full documentation here: https://github.com/VinceG/twitter-bootstrap-wizard -->
<!-- Plugin for the Sliders, full documentation here: http://refreshless.com/nouislider/ -->
<script src="assets/js/plugins/nouislider.min.js"></script>
<!-- Include a polyfill for ES6 Promises (optional) for IE11, UC Browser and Android browser support SweetAlert -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/core-js/2.4.1/core.js"></script>
<!-- Control Center for Material Dashboard: parallax effects, scripts for the example pages etc -->
<script src="assets/js/material-dashboard.js?v=2.1.2" type="text/javascript"></script>
<!-- Material Dashboard DEMO methods, don't include it in your project! -->
<script src="assets/demo/demo.js"></script>
<!--
=========================================================
Material Dashboard - v2.1.2
=========================================================
Product Page: https://www.creative-tim.com/product/material-dashboard
Copyright 2020 creative-tim.com (https://www.creative-tim.com)
Coded by creative-tim.com
=========================================================
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -->
<script>
$(document).ready(function() {
$().ready(function() {
$sidebar = $('.sidebar');
$sidebar_img_container = $sidebar.find('.sidebar-background');
$full_page = $('.full-page');
$sidebar_responsive = $('body > .navbar-collapse');
window_width = $(window).width();
fixed_plugin_open = $('.sidebar .sidebar-wrapper .nav li.active a p').html();
if (window_width > 767 && fixed_plugin_open == 'Dashboard') {
if ($('.fixed-plugin .dropdown').hasClass('show-dropdown')) {
$('.fixed-plugin .dropdown').addClass('open');
}
}
$('.fixed-plugin a').click(function(event) {
// Alex if we click on switch, stop propagation of the event, so the dropdown will not be hide, otherwise we set the section active
if ($(this).hasClass('switch-trigger')) {
if (event.stopPropagation) {
event.stopPropagation();
} else if (window.event) {
window.event.cancelBubble = true;
}
}
});
$('.fixed-plugin .active-color span').click(function() {
$full_page_background = $('.full-page-background');
$(this).siblings().removeClass('active');
$(this).addClass('active');
var new_color = $(this).data('color');
if ($sidebar.length != 0) {
$sidebar.attr('data-color', new_color);
}
if ($full_page.length != 0) {
$full_page.attr('filter-color', new_color);
}
if ($sidebar_responsive.length != 0) {
$sidebar_responsive.attr('data-color', new_color);
}
});
$('.fixed-plugin .background-color .badge').click(function() {
$(this).siblings().removeClass('active');
$(this).addClass('active');
var new_color = $(this).data('background-color');
if ($sidebar.length != 0) {
$sidebar.attr('data-background-color', new_color);
}
});
$('.fixed-plugin .img-holder').click(function() {
$full_page_background = $('.full-page-background');
$(this).parent('li').siblings().removeClass('active');
$(this).parent('li').addClass('active');
var new_image = $(this).find("img").attr('src');
if ($sidebar_img_container.length != 0 && $('.switch-sidebar-image input:checked').length != 0) {
$sidebar_img_container.fadeOut('fast', function() {
$sidebar_img_container.css('background-image', 'url("' + new_image + '")');
$sidebar_img_container.fadeIn('fast');
});
}
if ($full_page_background.length != 0 && $('.switch-sidebar-image input:checked').length != 0) {
var new_image_full_page = $('.fixed-plugin li.active .img-holder').find('img').data('src');
$full_page_background.fadeOut('fast', function() {
$full_page_background.css('background-image', 'url("' + new_image_full_page + '")');
$full_page_background.fadeIn('fast');
});
}
if ($('.switch-sidebar-image input:checked').length == 0) {
var new_image = $('.fixed-plugin li.active .img-holder').find("img").attr('src');
var new_image_full_page = $('.fixed-plugin li.active .img-holder').find('img').data('src');
$sidebar_img_container.css('background-image', 'url("' + new_image + '")');
$full_page_background.css('background-image', 'url("' + new_image_full_page + '")');
}
if ($sidebar_responsive.length != 0) {
$sidebar_responsive.css('background-image', 'url("' + new_image + '")');
}
});
$('.switch-sidebar-image input').change(function() {
$full_page_background = $('.full-page-background');
$input = $(this);
if ($input.is(':checked')) {
if ($sidebar_img_container.length != 0) {
$sidebar_img_container.fadeIn('fast');
$sidebar.attr('data-image', '#');
}
if ($full_page_background.length != 0) {
$full_page_background.fadeIn('fast');
$full_page.attr('data-image', '#');
}
background_image = true;
} else {
if ($sidebar_img_container.length != 0) {
$sidebar.removeAttr('data-image');
$sidebar_img_container.fadeOut('fast');
}
if ($full_page_background.length != 0) {
$full_page.removeAttr('data-image', '#');
$full_page_background.fadeOut('fast');
}
background_image = false;
}
});
$('.switch-sidebar-mini input').change(function() {
$body = $('body');
$input = $(this);
if (md.misc.sidebar_mini_active == true) {
$('body').removeClass('sidebar-mini');
md.misc.sidebar_mini_active = false;
$('.sidebar .sidebar-wrapper, .main-panel').perfectScrollbar();
} else {
$('.sidebar .sidebar-wrapper, .main-panel').perfectScrollbar('destroy');
setTimeout(function() {
$('body').addClass('sidebar-mini');
md.misc.sidebar_mini_active = true;
}, 300);
}
// we simulate the window Resize so the charts will get updated in realtime.
var simulateWindowResize = setInterval(function() {
window.dispatchEvent(new Event('resize'));
}, 180);
// we stop the simulation of Window Resize after the animations are completed
setTimeout(function() {
clearInterval(simulateWindowResize);
}, 1000);
});
});
});
</script>
<script>
$(document).ready(function() {
// Javascript method's body can be found in assets/js/demos.js
md.initDashboardPageCharts();
});
</script>
</body>
</html>