-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcanais.php
More file actions
154 lines (135 loc) · 6.24 KB
/
canais.php
File metadata and controls
154 lines (135 loc) · 6.24 KB
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
<?php
require_once("libs/lib.php");
$user = $_COOKIE['xuserm'];
$pwd = $_COOKIE['xpwdm'];
$categoria = urldecode($_REQUEST['catg']);
$id = trim($_REQUEST['id']);
$adulto = trim($_REQUEST['adulto']);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php include("inc/head.php"); ?>
<?php if($adulto == 'S') { ?>
<link href="assets/css/age-verification.css" rel="stylesheet">
<?php } ?>
</head>
<body onselectstart="return false" oncontextmenu="return false" ondragstart="return false">
<!-- CATEGORY 1 -->
<div id="category1" class="container-fluid standard-bg">
<!-- HEADER -->
<div class="row header-top">
<?php include("inc/header.php"); ?>
</div>
<!-- MENU -->
<div class="row home-mega-menu ">
<div class="col-md-12">
<nav class="navbar navbar-default">
<div class="navbar-header">
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target=".js-navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="collapse navbar-collapse js-navbar-collapse megabg dropshd ">
<ul class="nav navbar-nav">
<?php include("inc/menu.php"); ?>
</ul>
<div class="search-block">
<?php include("inc/busca.php"); ?>
</div>
</div>
<!-- /.nav-collapse -->
</nav>
</div>
</div>
<!-- CATEGORY -->
<div class="row">
<!-- POST ARTICLES -->
<div class="col-lg-10 col-md-8">
<section id="category">
<div class="row auto-clear">
<!-- RELATED VIDEOS -->
<div class="col-lg-12 col-md-12 col-sm-12 category-video-grid">
<h2 class="icon"><i class="fa fa-trophy" aria-hidden="true"></i><?php echo $categoria; ?></h2>
<!-- VIDEO POSTS ROW -->
<div class="row" id="resultados">
<?php
$url = IP."/player_api.php?username=$user&password=$pwd&action=get_live_streams&category_id=$id";
$resposta = apixtream($url);
$output = json_decode($resposta,true);
//shuffle($output);
$i = 1;
foreach($output as $index) {
$iss = $_REQUEST['sessao'];
$idnum = $index['num'];
$canal_nome = $index['name'];
$canal_type = $index['stream_type'];
$canal_id = $index['stream_id'];
$canal_img = $index['stream_icon'];
?>
<article class="col-lg-2 col-md-6 col-sm-4">
<!-- POST L size -->
<div class="post post-medium">
<div class="thumbr">
<a class="post-thumb" href="canal.php?sessao=<?php echo $_GET['sessao']; ?>&stream=<?php echo $canal_id; ?>&streamtipo=<?php echo $canal_type; ?>&canal=<?php echo urlencode($canal_nome); ?>&img=<?php echo urlencode($canal_img); ?>&catg=<?php echo $_GET['id']; ?>">
<span class="play-btn-border" title="Play"><i class="fa fa-play-circle headline-round" aria-hidden="true"></i></span>
<div class="cactus-note ct-time font-size-1"><span>Ao Vivo</span></div>
<img class="img-responsive" src="<?php echo $canal_img; ?>" alt="<?php echo $canal_nome; ?>" style="width:100%;height:200px;">
</a>
</div>
<div class="infor">
<h4>
<a class="title" href="canal.php?sessao=<?php echo $_GET['sessao']; ?>&stream=<?php echo $canal_id; ?>&streamtipo=<?php echo $canal_type; ?>&canal=<?php echo urlencode($canal_nome); ?>&img=<?php echo urlencode($canal_img); ?>&catg=<?php echo $_GET['id']; ?>"><?php echo $canal_nome; ?></a>
</h4>
</div>
</div>
</article>
<?php } ?>
</div>
<div class="clearfix spacer"></div>
</div>
</div>
</section>
</div>
<!-- SIDEBAR -->
<div class="col-lg-2 col-md-4 hidden-sm hidden-xs">
<aside class="dark-bg">
<article>
<h2 class="icon"><i class="fa fa-tv" aria-hidden="true"></i><?php echo TXT_CATEGORIAS; ?></h2>
<ul class="sidebar-links">
<?php
$url = IP."/player_api.php?username=$user&password=$pwd&action=get_live_categories";
$resposta = apixtream($url);
$output = json_decode($resposta,true);
foreach($output as $res1) {
$iss = $_REQUEST['sessao'];
$idcatcanal = $res1['category_id'];
$catgcanal = $res1['category_name'];
echo '<li class="fa fa-chevron-right"><a href="canais.php?sessao='.$iss.'&id='.$idcatcanal.'&catg='.urlencode($catgcanal).'">'.$catgcanal.'</a></li>';
}
?>
</ul>
</article>
<div class="clearfix spacer"></div>
</aside>
</div>
</div>
</div>
<!-- FOOTER -->
<div id="footer" class="container-fluid footer-background">
<div class="container">
<footer>
<?php include("inc/footer.php"); ?>
</footer>
</div>
</div>
<?php include("inc/scripts.php"); ?>
<?php if($adulto == 'S') { ?>
<script src="http://cdn.jsdelivr.net/jquery.cookie/1.4.1/jquery.cookie.min.js"></script>
<script src="assets/js/age-verification.js"></script>
<?php } ?>
</body>
</html>