@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | <?php |
141 | 141 | $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Science & Technology' ORDER BY rand() LIMIT 4"); |
142 | 142 | $stmt->execute(); |
143 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
143 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
144 | 144 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
145 | 145 | $video['duration'] = $__time_h->timestamp($video['duration']); |
146 | 146 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -175,7 +175,7 @@ discard block |
||
175 | 175 | <?php |
176 | 176 | $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Science & Technology' ORDER BY rand() LIMIT 4"); |
177 | 177 | $stmt->execute(); |
178 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
178 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
179 | 179 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
180 | 180 | $video['duration'] = $__time_h->timestamp($video['duration']); |
181 | 181 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -210,7 +210,7 @@ discard block |
||
210 | 210 | <?php |
211 | 211 | $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Science & Technology' ORDER BY rand() LIMIT 4"); |
212 | 212 | $stmt->execute(); |
213 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
213 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
214 | 214 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
215 | 215 | $video['duration'] = $__time_h->timestamp($video['duration']); |
216 | 216 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -245,7 +245,7 @@ discard block |
||
245 | 245 | <?php |
246 | 246 | $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Science & Technology' ORDER BY rand() LIMIT 4"); |
247 | 247 | $stmt->execute(); |
248 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
248 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
249 | 249 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
250 | 250 | $video['duration'] = $__time_h->timestamp($video['duration']); |
251 | 251 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -280,7 +280,7 @@ discard block |
||
280 | 280 | <?php |
281 | 281 | $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Science & Technology' ORDER BY rand() LIMIT 4"); |
282 | 282 | $stmt->execute(); |
283 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
283 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
284 | 284 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
285 | 285 | $video['duration'] = $__time_h->timestamp($video['duration']); |
286 | 286 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -8,10 +8,10 @@ discard block |
||
8 | 8 | <?php $__db_h = new db_helper(); ?> |
9 | 9 | <?php $__time_h = new time_helper(); ?> |
10 | 10 | <?php |
11 | - $__server->page_embeds->page_title = "SubRocks - Science"; |
|
12 | - $__server->page_embeds->page_description = "SubRocks is a site dedicated to bring back the 2012 layout of YouTube."; |
|
13 | - $__server->page_embeds->page_image = "/yt/imgbin/full-size-logo.png"; |
|
14 | - $__server->page_embeds->page_url = "https://subrock.rocks/"; |
|
11 | + $__server->page_embeds->page_title = "SubRocks - Science"; |
|
12 | + $__server->page_embeds->page_description = "SubRocks is a site dedicated to bring back the 2012 layout of YouTube."; |
|
13 | + $__server->page_embeds->page_image = "/yt/imgbin/full-size-logo.png"; |
|
14 | + $__server->page_embeds->page_url = "https://subrock.rocks/"; |
|
15 | 15 | ?> |
16 | 16 | <!DOCTYPE html> |
17 | 17 | <html dir="ltr"> |
@@ -141,16 +141,16 @@ discard block |
||
141 | 141 | </div> |
142 | 142 | <div class="browse-item-row ytg-box"> |
143 | 143 | <?php |
144 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Science & Technology' ORDER BY rand() LIMIT 4"); |
|
145 | - $stmt->execute(); |
|
146 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
147 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
148 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
149 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
150 | - $video['author'] = htmlspecialchars($video['author']); |
|
151 | - $video['title'] = htmlspecialchars($video['title']); |
|
152 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
153 | - ?> |
|
144 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Science & Technology' ORDER BY rand() LIMIT 4"); |
|
145 | + $stmt->execute(); |
|
146 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
147 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
148 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
149 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
150 | + $video['author'] = htmlspecialchars($video['author']); |
|
151 | + $video['title'] = htmlspecialchars($video['title']); |
|
152 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
153 | + ?> |
|
154 | 154 | <div class="browse-item yt-tile-default "> |
155 | 155 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
156 | 156 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -176,16 +176,16 @@ discard block |
||
176 | 176 | </div> |
177 | 177 | <div class="browse-item-row ytg-box"> |
178 | 178 | <?php |
179 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Science & Technology' ORDER BY rand() LIMIT 4"); |
|
180 | - $stmt->execute(); |
|
181 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
182 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
183 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
184 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
185 | - $video['author'] = htmlspecialchars($video['author']); |
|
186 | - $video['title'] = htmlspecialchars($video['title']); |
|
187 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
188 | - ?> |
|
179 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Science & Technology' ORDER BY rand() LIMIT 4"); |
|
180 | + $stmt->execute(); |
|
181 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
182 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
183 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
184 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
185 | + $video['author'] = htmlspecialchars($video['author']); |
|
186 | + $video['title'] = htmlspecialchars($video['title']); |
|
187 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
188 | + ?> |
|
189 | 189 | <div class="browse-item yt-tile-default "> |
190 | 190 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
191 | 191 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -211,16 +211,16 @@ discard block |
||
211 | 211 | </div> |
212 | 212 | <div class="browse-item-row ytg-box"> |
213 | 213 | <?php |
214 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Science & Technology' ORDER BY rand() LIMIT 4"); |
|
215 | - $stmt->execute(); |
|
216 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
217 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
218 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
219 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
220 | - $video['author'] = htmlspecialchars($video['author']); |
|
221 | - $video['title'] = htmlspecialchars($video['title']); |
|
222 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
223 | - ?> |
|
214 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Science & Technology' ORDER BY rand() LIMIT 4"); |
|
215 | + $stmt->execute(); |
|
216 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
217 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
218 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
219 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
220 | + $video['author'] = htmlspecialchars($video['author']); |
|
221 | + $video['title'] = htmlspecialchars($video['title']); |
|
222 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
223 | + ?> |
|
224 | 224 | <div class="browse-item yt-tile-default "> |
225 | 225 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
226 | 226 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -246,16 +246,16 @@ discard block |
||
246 | 246 | </div> |
247 | 247 | <div class="browse-item-row ytg-box"> |
248 | 248 | <?php |
249 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Science & Technology' ORDER BY rand() LIMIT 4"); |
|
250 | - $stmt->execute(); |
|
251 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
252 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
253 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
254 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
255 | - $video['author'] = htmlspecialchars($video['author']); |
|
256 | - $video['title'] = htmlspecialchars($video['title']); |
|
257 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
258 | - ?> |
|
249 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Science & Technology' ORDER BY rand() LIMIT 4"); |
|
250 | + $stmt->execute(); |
|
251 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
252 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
253 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
254 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
255 | + $video['author'] = htmlspecialchars($video['author']); |
|
256 | + $video['title'] = htmlspecialchars($video['title']); |
|
257 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
258 | + ?> |
|
259 | 259 | <div class="browse-item yt-tile-default "> |
260 | 260 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
261 | 261 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -281,16 +281,16 @@ discard block |
||
281 | 281 | </div> |
282 | 282 | <div class="browse-item-row ytg-box"> |
283 | 283 | <?php |
284 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Science & Technology' ORDER BY rand() LIMIT 4"); |
|
285 | - $stmt->execute(); |
|
286 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
287 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
288 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
289 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
290 | - $video['author'] = htmlspecialchars($video['author']); |
|
291 | - $video['title'] = htmlspecialchars($video['title']); |
|
292 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
293 | - ?> |
|
284 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Science & Technology' ORDER BY rand() LIMIT 4"); |
|
285 | + $stmt->execute(); |
|
286 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
287 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
288 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
289 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
290 | + $video['author'] = htmlspecialchars($video['author']); |
|
291 | + $video['title'] = htmlspecialchars($video['title']); |
|
292 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
293 | + ?> |
|
294 | 294 | <div class="browse-item yt-tile-default "> |
295 | 295 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
296 | 296 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -224,10 +224,11 @@ |
||
224 | 224 | $status = "Unknown"; |
225 | 225 | } |
226 | 226 | |
227 | - if($video['commenting'] == "a") |
|
228 | - $video['commentstatus'] = "Commenting allowed"; |
|
229 | - else |
|
230 | - $video['commentstatus'] = "Commenting disallowed"; |
|
227 | + if($video['commenting'] == "a") { |
|
228 | + $video['commentstatus'] = "Commenting allowed"; |
|
229 | + } else { |
|
230 | + $video['commentstatus'] = "Commenting disallowed"; |
|
231 | + } |
|
231 | 232 | ?> |
232 | 233 | <tr style="margin-top: 5px;" id="videoslist"> |
233 | 234 | <td class="video-manager-left"> |
@@ -8,10 +8,10 @@ |
||
8 | 8 | <?php $__db_h = new db_helper(); ?> |
9 | 9 | <?php $__time_h = new time_helper(); ?> |
10 | 10 | <?php |
11 | - $__server->page_embeds->page_title = "SubRocks - My Videos"; |
|
12 | - $__server->page_embeds->page_description = "SubRocks is a site dedicated to bring back the 2012 layout of YouTube."; |
|
13 | - $__server->page_embeds->page_image = "/yt/imgbin/full-size-logo.png"; |
|
14 | - $__server->page_embeds->page_url = "https://subrock.rocks/"; |
|
11 | + $__server->page_embeds->page_title = "SubRocks - My Videos"; |
|
12 | + $__server->page_embeds->page_description = "SubRocks is a site dedicated to bring back the 2012 layout of YouTube."; |
|
13 | + $__server->page_embeds->page_image = "/yt/imgbin/full-size-logo.png"; |
|
14 | + $__server->page_embeds->page_url = "https://subrock.rocks/"; |
|
15 | 15 | ?> |
16 | 16 | <?php if(!isset($_SESSION['siteusername'])) { header("Location: /sign_in"); } ?> |
17 | 17 | <!DOCTYPE html> |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | $__server->page_embeds->page_image = "/yt/imgbin/full-size-logo.png"; |
14 | 14 | $__server->page_embeds->page_url = "https://subrock.rocks/"; |
15 | 15 | ?> |
16 | -<?php if(!isset($_SESSION['siteusername'])) { header("Location: /sign_in"); } ?> |
|
16 | +<?php if (!isset($_SESSION['siteusername'])) { header("Location: /sign_in"); } ?> |
|
17 | 17 | <!DOCTYPE html> |
18 | 18 | <html dir="ltr"> |
19 | 19 | <head> |
@@ -166,15 +166,15 @@ discard block |
||
166 | 166 | $stmt->execute(); |
167 | 167 | |
168 | 168 | $number_of_result = $stmt->rowCount(); |
169 | - $number_of_page = ceil ($number_of_result / $results_per_page); |
|
169 | + $number_of_page = ceil($number_of_result/$results_per_page); |
|
170 | 170 | |
171 | - if (!isset ($_GET['page']) ) { |
|
171 | + if (!isset ($_GET['page'])) { |
|
172 | 172 | $page = 1; |
173 | 173 | } else { |
174 | - $page = (int)$_GET['page']; |
|
174 | + $page = (int) $_GET['page']; |
|
175 | 175 | } |
176 | 176 | |
177 | - $page_first_result = ($page - 1) * $results_per_page; |
|
177 | + $page_first_result = ($page - 1)*$results_per_page; |
|
178 | 178 | ?> |
179 | 179 | <?php |
180 | 180 | $stmt6 = $__db->prepare("SELECT * FROM videos WHERE author = :search ORDER BY id DESC LIMIT :pfirst, :pper"); |
@@ -199,7 +199,7 @@ discard block |
||
199 | 199 | </tr> |
200 | 200 | |
201 | 201 | <?php |
202 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
202 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
203 | 203 | $video['video_responses'] = $__video_h->get_video_responses($video['rid']); |
204 | 204 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
205 | 205 | $video['duration'] = $__time_h->timestamp($video['duration']); |
@@ -208,19 +208,19 @@ discard block |
||
208 | 208 | $video['title'] = htmlspecialchars($video['title']); |
209 | 209 | $video['description'] = $__video_h->shorten_description($video['description'], 50); |
210 | 210 | |
211 | - if($video['thumbnail'] == ".png" && $video['filename'] == ".mp4") { |
|
211 | + if ($video['thumbnail'] == ".png" && $video['filename'] == ".mp4") { |
|
212 | 212 | $status = "Corrupted"; |
213 | - } else if($video['visibility'] == "v") { |
|
213 | + } else if ($video['visibility'] == "v") { |
|
214 | 214 | $status = "Approved"; |
215 | - } else if($video['visibility'] == "n") { |
|
215 | + } else if ($video['visibility'] == "n") { |
|
216 | 216 | $status = "Approved"; |
217 | - } else if($video['visibility'] == "o") { |
|
217 | + } else if ($video['visibility'] == "o") { |
|
218 | 218 | $status = "Disapproved"; |
219 | 219 | } else { |
220 | 220 | $status = "Unknown"; |
221 | 221 | } |
222 | 222 | |
223 | - if($video['commenting'] == "a") |
|
223 | + if ($video['commenting'] == "a") |
|
224 | 224 | $video['commentstatus'] = "Commenting allowed"; |
225 | 225 | else |
226 | 226 | $video['commentstatus'] = "Commenting disallowed"; |
@@ -284,7 +284,7 @@ discard block |
||
284 | 284 | </div> |
285 | 285 | </center> |
286 | 286 | |
287 | - <?php for($page = 1; $page<= $number_of_page; $page++) { ?> |
|
287 | + <?php for ($page = 1; $page <= $number_of_page; $page++) { ?> |
|
288 | 288 | <button class="yt-uix-button yt-uix-button-default" onclick="ajax_fetch_videomanager(<?php echo $page; ?>)"><?php echo $page; ?></button> |
289 | 289 | <?php } ?> |
290 | 290 | |
@@ -330,7 +330,7 @@ discard block |
||
330 | 330 | </script> |
331 | 331 | |
332 | 332 | <?php |
333 | - if($stmt6->rowCount() == 0) { echo " |
|
333 | + if ($stmt6->rowCount() == 0) { echo " |
|
334 | 334 | <br>Welcome to your Video Manager! You can manage your uploaded videos here.<br> |
335 | 335 | <a href=\"upload_video\"> |
336 | 336 | <button type=\"button\" class=\" yt-uix-button yt-uix-button-default\" role=\"button\"> |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | <?php |
141 | 141 | $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Film & Animation' ORDER BY rand() LIMIT 4"); |
142 | 142 | $stmt->execute(); |
143 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
143 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
144 | 144 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
145 | 145 | $video['duration'] = $__time_h->timestamp($video['duration']); |
146 | 146 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -175,7 +175,7 @@ discard block |
||
175 | 175 | <?php |
176 | 176 | $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Film & Animation' ORDER BY rand() LIMIT 4"); |
177 | 177 | $stmt->execute(); |
178 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
178 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
179 | 179 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
180 | 180 | $video['duration'] = $__time_h->timestamp($video['duration']); |
181 | 181 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -210,7 +210,7 @@ discard block |
||
210 | 210 | <?php |
211 | 211 | $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Film & Animation' ORDER BY rand() LIMIT 4"); |
212 | 212 | $stmt->execute(); |
213 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
213 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
214 | 214 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
215 | 215 | $video['duration'] = $__time_h->timestamp($video['duration']); |
216 | 216 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -245,7 +245,7 @@ discard block |
||
245 | 245 | <?php |
246 | 246 | $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Film & Animation' ORDER BY rand() LIMIT 4"); |
247 | 247 | $stmt->execute(); |
248 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
248 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
249 | 249 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
250 | 250 | $video['duration'] = $__time_h->timestamp($video['duration']); |
251 | 251 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -280,7 +280,7 @@ discard block |
||
280 | 280 | <?php |
281 | 281 | $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Film & Animation' ORDER BY rand() LIMIT 4"); |
282 | 282 | $stmt->execute(); |
283 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
283 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
284 | 284 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
285 | 285 | $video['duration'] = $__time_h->timestamp($video['duration']); |
286 | 286 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -8,10 +8,10 @@ discard block |
||
8 | 8 | <?php $__db_h = new db_helper(); ?> |
9 | 9 | <?php $__time_h = new time_helper(); ?> |
10 | 10 | <?php |
11 | - $__server->page_embeds->page_title = "SubRocks - Film"; |
|
12 | - $__server->page_embeds->page_description = "SubRocks is a site dedicated to bring back the 2012 layout of YouTube."; |
|
13 | - $__server->page_embeds->page_image = "/yt/imgbin/full-size-logo.png"; |
|
14 | - $__server->page_embeds->page_url = "https://subrock.rocks/"; |
|
11 | + $__server->page_embeds->page_title = "SubRocks - Film"; |
|
12 | + $__server->page_embeds->page_description = "SubRocks is a site dedicated to bring back the 2012 layout of YouTube."; |
|
13 | + $__server->page_embeds->page_image = "/yt/imgbin/full-size-logo.png"; |
|
14 | + $__server->page_embeds->page_url = "https://subrock.rocks/"; |
|
15 | 15 | ?> |
16 | 16 | <!DOCTYPE html> |
17 | 17 | <html dir="ltr"> |
@@ -141,16 +141,16 @@ discard block |
||
141 | 141 | </div> |
142 | 142 | <div class="browse-item-row ytg-box"> |
143 | 143 | <?php |
144 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Film & Animation' ORDER BY rand() LIMIT 4"); |
|
145 | - $stmt->execute(); |
|
146 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
147 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
148 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
149 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
150 | - $video['author'] = htmlspecialchars($video['author']); |
|
151 | - $video['title'] = htmlspecialchars($video['title']); |
|
152 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
153 | - ?> |
|
144 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Film & Animation' ORDER BY rand() LIMIT 4"); |
|
145 | + $stmt->execute(); |
|
146 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
147 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
148 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
149 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
150 | + $video['author'] = htmlspecialchars($video['author']); |
|
151 | + $video['title'] = htmlspecialchars($video['title']); |
|
152 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
153 | + ?> |
|
154 | 154 | <div class="browse-item yt-tile-default "> |
155 | 155 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
156 | 156 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -176,16 +176,16 @@ discard block |
||
176 | 176 | </div> |
177 | 177 | <div class="browse-item-row ytg-box"> |
178 | 178 | <?php |
179 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Film & Animation' ORDER BY rand() LIMIT 4"); |
|
180 | - $stmt->execute(); |
|
181 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
182 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
183 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
184 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
185 | - $video['author'] = htmlspecialchars($video['author']); |
|
186 | - $video['title'] = htmlspecialchars($video['title']); |
|
187 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
188 | - ?> |
|
179 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Film & Animation' ORDER BY rand() LIMIT 4"); |
|
180 | + $stmt->execute(); |
|
181 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
182 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
183 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
184 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
185 | + $video['author'] = htmlspecialchars($video['author']); |
|
186 | + $video['title'] = htmlspecialchars($video['title']); |
|
187 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
188 | + ?> |
|
189 | 189 | <div class="browse-item yt-tile-default "> |
190 | 190 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
191 | 191 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -211,16 +211,16 @@ discard block |
||
211 | 211 | </div> |
212 | 212 | <div class="browse-item-row ytg-box"> |
213 | 213 | <?php |
214 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Film & Animation' ORDER BY rand() LIMIT 4"); |
|
215 | - $stmt->execute(); |
|
216 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
217 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
218 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
219 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
220 | - $video['author'] = htmlspecialchars($video['author']); |
|
221 | - $video['title'] = htmlspecialchars($video['title']); |
|
222 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
223 | - ?> |
|
214 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Film & Animation' ORDER BY rand() LIMIT 4"); |
|
215 | + $stmt->execute(); |
|
216 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
217 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
218 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
219 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
220 | + $video['author'] = htmlspecialchars($video['author']); |
|
221 | + $video['title'] = htmlspecialchars($video['title']); |
|
222 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
223 | + ?> |
|
224 | 224 | <div class="browse-item yt-tile-default "> |
225 | 225 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
226 | 226 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -246,16 +246,16 @@ discard block |
||
246 | 246 | </div> |
247 | 247 | <div class="browse-item-row ytg-box"> |
248 | 248 | <?php |
249 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Film & Animation' ORDER BY rand() LIMIT 4"); |
|
250 | - $stmt->execute(); |
|
251 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
252 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
253 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
254 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
255 | - $video['author'] = htmlspecialchars($video['author']); |
|
256 | - $video['title'] = htmlspecialchars($video['title']); |
|
257 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
258 | - ?> |
|
249 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Film & Animation' ORDER BY rand() LIMIT 4"); |
|
250 | + $stmt->execute(); |
|
251 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
252 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
253 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
254 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
255 | + $video['author'] = htmlspecialchars($video['author']); |
|
256 | + $video['title'] = htmlspecialchars($video['title']); |
|
257 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
258 | + ?> |
|
259 | 259 | <div class="browse-item yt-tile-default "> |
260 | 260 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
261 | 261 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -281,16 +281,16 @@ discard block |
||
281 | 281 | </div> |
282 | 282 | <div class="browse-item-row ytg-box"> |
283 | 283 | <?php |
284 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Film & Animation' ORDER BY rand() LIMIT 4"); |
|
285 | - $stmt->execute(); |
|
286 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
287 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
288 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
289 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
290 | - $video['author'] = htmlspecialchars($video['author']); |
|
291 | - $video['title'] = htmlspecialchars($video['title']); |
|
292 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
293 | - ?> |
|
284 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Film & Animation' ORDER BY rand() LIMIT 4"); |
|
285 | + $stmt->execute(); |
|
286 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
287 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
288 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
289 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
290 | + $video['author'] = htmlspecialchars($video['author']); |
|
291 | + $video['title'] = htmlspecialchars($video['title']); |
|
292 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
293 | + ?> |
|
294 | 294 | <div class="browse-item yt-tile-default "> |
295 | 295 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
296 | 296 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | <?php |
141 | 141 | $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Pets & Animals' ORDER BY rand() LIMIT 4"); |
142 | 142 | $stmt->execute(); |
143 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
143 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
144 | 144 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
145 | 145 | $video['duration'] = $__time_h->timestamp($video['duration']); |
146 | 146 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -175,7 +175,7 @@ discard block |
||
175 | 175 | <?php |
176 | 176 | $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Pets & Animals' ORDER BY rand() LIMIT 4"); |
177 | 177 | $stmt->execute(); |
178 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
178 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
179 | 179 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
180 | 180 | $video['duration'] = $__time_h->timestamp($video['duration']); |
181 | 181 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -210,7 +210,7 @@ discard block |
||
210 | 210 | <?php |
211 | 211 | $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Pets & Animals' ORDER BY rand() LIMIT 4"); |
212 | 212 | $stmt->execute(); |
213 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
213 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
214 | 214 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
215 | 215 | $video['duration'] = $__time_h->timestamp($video['duration']); |
216 | 216 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -245,7 +245,7 @@ discard block |
||
245 | 245 | <?php |
246 | 246 | $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Pets & Animals' ORDER BY rand() LIMIT 4"); |
247 | 247 | $stmt->execute(); |
248 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
248 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
249 | 249 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
250 | 250 | $video['duration'] = $__time_h->timestamp($video['duration']); |
251 | 251 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -280,7 +280,7 @@ discard block |
||
280 | 280 | <?php |
281 | 281 | $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Pets & Animals' ORDER BY rand() LIMIT 4"); |
282 | 282 | $stmt->execute(); |
283 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
283 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
284 | 284 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
285 | 285 | $video['duration'] = $__time_h->timestamp($video['duration']); |
286 | 286 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -8,10 +8,10 @@ discard block |
||
8 | 8 | <?php $__db_h = new db_helper(); ?> |
9 | 9 | <?php $__time_h = new time_helper(); ?> |
10 | 10 | <?php |
11 | - $__server->page_embeds->page_title = "SubRocks - Pets"; |
|
12 | - $__server->page_embeds->page_description = "SubRocks is a site dedicated to bring back the 2012 layout of YouTube."; |
|
13 | - $__server->page_embeds->page_image = "/yt/imgbin/full-size-logo.png"; |
|
14 | - $__server->page_embeds->page_url = "https://subrock.rocks/"; |
|
11 | + $__server->page_embeds->page_title = "SubRocks - Pets"; |
|
12 | + $__server->page_embeds->page_description = "SubRocks is a site dedicated to bring back the 2012 layout of YouTube."; |
|
13 | + $__server->page_embeds->page_image = "/yt/imgbin/full-size-logo.png"; |
|
14 | + $__server->page_embeds->page_url = "https://subrock.rocks/"; |
|
15 | 15 | ?> |
16 | 16 | <!DOCTYPE html> |
17 | 17 | <html dir="ltr"> |
@@ -141,16 +141,16 @@ discard block |
||
141 | 141 | </div> |
142 | 142 | <div class="browse-item-row ytg-box"> |
143 | 143 | <?php |
144 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Pets & Animals' ORDER BY rand() LIMIT 4"); |
|
145 | - $stmt->execute(); |
|
146 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
147 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
148 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
149 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
150 | - $video['author'] = htmlspecialchars($video['author']); |
|
151 | - $video['title'] = htmlspecialchars($video['title']); |
|
152 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
153 | - ?> |
|
144 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Pets & Animals' ORDER BY rand() LIMIT 4"); |
|
145 | + $stmt->execute(); |
|
146 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
147 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
148 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
149 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
150 | + $video['author'] = htmlspecialchars($video['author']); |
|
151 | + $video['title'] = htmlspecialchars($video['title']); |
|
152 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
153 | + ?> |
|
154 | 154 | <div class="browse-item yt-tile-default "> |
155 | 155 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
156 | 156 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -176,16 +176,16 @@ discard block |
||
176 | 176 | </div> |
177 | 177 | <div class="browse-item-row ytg-box"> |
178 | 178 | <?php |
179 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Pets & Animals' ORDER BY rand() LIMIT 4"); |
|
180 | - $stmt->execute(); |
|
181 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
182 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
183 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
184 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
185 | - $video['author'] = htmlspecialchars($video['author']); |
|
186 | - $video['title'] = htmlspecialchars($video['title']); |
|
187 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
188 | - ?> |
|
179 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Pets & Animals' ORDER BY rand() LIMIT 4"); |
|
180 | + $stmt->execute(); |
|
181 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
182 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
183 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
184 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
185 | + $video['author'] = htmlspecialchars($video['author']); |
|
186 | + $video['title'] = htmlspecialchars($video['title']); |
|
187 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
188 | + ?> |
|
189 | 189 | <div class="browse-item yt-tile-default "> |
190 | 190 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
191 | 191 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -211,16 +211,16 @@ discard block |
||
211 | 211 | </div> |
212 | 212 | <div class="browse-item-row ytg-box"> |
213 | 213 | <?php |
214 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Pets & Animals' ORDER BY rand() LIMIT 4"); |
|
215 | - $stmt->execute(); |
|
216 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
217 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
218 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
219 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
220 | - $video['author'] = htmlspecialchars($video['author']); |
|
221 | - $video['title'] = htmlspecialchars($video['title']); |
|
222 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
223 | - ?> |
|
214 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Pets & Animals' ORDER BY rand() LIMIT 4"); |
|
215 | + $stmt->execute(); |
|
216 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
217 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
218 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
219 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
220 | + $video['author'] = htmlspecialchars($video['author']); |
|
221 | + $video['title'] = htmlspecialchars($video['title']); |
|
222 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
223 | + ?> |
|
224 | 224 | <div class="browse-item yt-tile-default "> |
225 | 225 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
226 | 226 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -246,16 +246,16 @@ discard block |
||
246 | 246 | </div> |
247 | 247 | <div class="browse-item-row ytg-box"> |
248 | 248 | <?php |
249 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Pets & Animals' ORDER BY rand() LIMIT 4"); |
|
250 | - $stmt->execute(); |
|
251 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
252 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
253 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
254 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
255 | - $video['author'] = htmlspecialchars($video['author']); |
|
256 | - $video['title'] = htmlspecialchars($video['title']); |
|
257 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
258 | - ?> |
|
249 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Pets & Animals' ORDER BY rand() LIMIT 4"); |
|
250 | + $stmt->execute(); |
|
251 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
252 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
253 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
254 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
255 | + $video['author'] = htmlspecialchars($video['author']); |
|
256 | + $video['title'] = htmlspecialchars($video['title']); |
|
257 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
258 | + ?> |
|
259 | 259 | <div class="browse-item yt-tile-default "> |
260 | 260 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
261 | 261 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -281,16 +281,16 @@ discard block |
||
281 | 281 | </div> |
282 | 282 | <div class="browse-item-row ytg-box"> |
283 | 283 | <?php |
284 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Pets & Animals' ORDER BY rand() LIMIT 4"); |
|
285 | - $stmt->execute(); |
|
286 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
287 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
288 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
289 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
290 | - $video['author'] = htmlspecialchars($video['author']); |
|
291 | - $video['title'] = htmlspecialchars($video['title']); |
|
292 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
293 | - ?> |
|
284 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE category = 'Pets & Animals' ORDER BY rand() LIMIT 4"); |
|
285 | + $stmt->execute(); |
|
286 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
287 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
288 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
289 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
290 | + $video['author'] = htmlspecialchars($video['author']); |
|
291 | + $video['title'] = htmlspecialchars($video['title']); |
|
292 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
293 | + ?> |
|
294 | 294 | <div class="browse-item yt-tile-default "> |
295 | 295 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
296 | 296 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -11,11 +11,11 @@ discard block |
||
11 | 11 | <?php |
12 | 12 | $search = $_SESSION['siteusername']; |
13 | 13 | |
14 | - if($_GET['filter'] == "time") { |
|
14 | + if ($_GET['filter'] == "time") { |
|
15 | 15 | $stmt = $__db->prepare("SELECT * FROM favorite_video WHERE sender = :username ORDER BY id DESC"); |
16 | 16 | $stmt->bindParam(":username", $_SESSION['siteusername']); |
17 | 17 | $stmt->execute(); |
18 | - } else if($_GET['filter'] == "title") { |
|
18 | + } else if ($_GET['filter'] == "title") { |
|
19 | 19 | $stmt = $__db->prepare("SELECT * FROM favorite_video WHERE sender = :username ORDER BY title DESC"); |
20 | 20 | $stmt->bindParam(":username", $_SESSION['siteusername']); |
21 | 21 | $stmt->execute(); |
@@ -23,23 +23,23 @@ discard block |
||
23 | 23 | |
24 | 24 | $results_per_page = 12; |
25 | 25 | $number_of_result = $stmt->rowCount(); |
26 | - $number_of_page = ceil ($number_of_result / $results_per_page); |
|
26 | + $number_of_page = ceil($number_of_result/$results_per_page); |
|
27 | 27 | |
28 | - if (!isset ($_GET['page']) ) { |
|
28 | + if (!isset ($_GET['page'])) { |
|
29 | 29 | $page = 1; |
30 | 30 | } else { |
31 | - $page = (int)$_GET['page']; |
|
31 | + $page = (int) $_GET['page']; |
|
32 | 32 | } |
33 | 33 | |
34 | - $page_first_result = ($page - 1) * $results_per_page; |
|
34 | + $page_first_result = ($page - 1)*$results_per_page; |
|
35 | 35 | |
36 | - if($_GET['filter'] == "time") { |
|
36 | + if ($_GET['filter'] == "time") { |
|
37 | 37 | $stmt6 = $__db->prepare("SELECT * FROM favorite_video WHERE sender = :search ORDER BY id DESC LIMIT :pfirst, :pper"); |
38 | 38 | $stmt6->bindParam(":search", $search); |
39 | 39 | $stmt6->bindParam(":pfirst", $page_first_result); |
40 | 40 | $stmt6->bindParam(":pper", $results_per_page); |
41 | 41 | $stmt6->execute(); |
42 | - } else if($_GET['filter'] == "title") { |
|
42 | + } else if ($_GET['filter'] == "title") { |
|
43 | 43 | $stmt6 = $__db->prepare("SELECT * FROM favorite_video WHERE sender = :search ORDER BY title LIMIT :pfirst, :pper"); |
44 | 44 | $stmt6->bindParam(":search", $search); |
45 | 45 | $stmt6->bindParam(":pfirst", $page_first_result); |
@@ -56,8 +56,8 @@ discard block |
||
56 | 56 | </tr> |
57 | 57 | |
58 | 58 | <?php |
59 | - while($video = $stmt6->fetch(PDO::FETCH_ASSOC)) { |
|
60 | - if($__video_h->video_exists($video['reciever'])) { |
|
59 | + while ($video = $stmt6->fetch(PDO::FETCH_ASSOC)) { |
|
60 | + if ($__video_h->video_exists($video['reciever'])) { |
|
61 | 61 | $_video = $__video_h->fetch_video_rid($video['reciever']); |
62 | 62 | $_video['video_responses'] = $__video_h->get_video_responses($_video['rid']); |
63 | 63 | $_video['age'] = $__time_h->time_elapsed_string($_video['publish']); |
@@ -67,19 +67,19 @@ discard block |
||
67 | 67 | $_video['title'] = htmlspecialchars($_video['title']); |
68 | 68 | $_video['description'] = $__video_h->shorten_description($_video['description'], 50); |
69 | 69 | |
70 | - if($_video['thumbnail'] == ".png" && $_video['filename'] == ".mp4") { |
|
70 | + if ($_video['thumbnail'] == ".png" && $_video['filename'] == ".mp4") { |
|
71 | 71 | $status = "Corrupted"; |
72 | - } else if($_video['visibility'] == "v") { |
|
72 | + } else if ($_video['visibility'] == "v") { |
|
73 | 73 | $status = "Approved"; |
74 | - } else if($_video['visibility'] == "n") { |
|
74 | + } else if ($_video['visibility'] == "n") { |
|
75 | 75 | $status = "Approved"; |
76 | - } else if($_video['visibility'] == "o") { |
|
76 | + } else if ($_video['visibility'] == "o") { |
|
77 | 77 | $status = "Disapproved"; |
78 | 78 | } else { |
79 | 79 | $status = "Unknown"; |
80 | 80 | } |
81 | 81 | |
82 | - if($_video['commenting'] == "a") |
|
82 | + if ($_video['commenting'] == "a") |
|
83 | 83 | $_video['commentstatus'] = "Commenting allowed"; |
84 | 84 | else |
85 | 85 | $_video['commentstatus'] = "Commenting disallowed"; |
@@ -83,10 +83,11 @@ |
||
83 | 83 | $status = "Unknown"; |
84 | 84 | } |
85 | 85 | |
86 | - if($_video['commenting'] == "a") |
|
87 | - $_video['commentstatus'] = "Commenting allowed"; |
|
88 | - else |
|
89 | - $_video['commentstatus'] = "Commenting disallowed"; |
|
86 | + if($_video['commenting'] == "a") { |
|
87 | + $_video['commentstatus'] = "Commenting allowed"; |
|
88 | + } else { |
|
89 | + $_video['commentstatus'] = "Commenting disallowed"; |
|
90 | + } |
|
90 | 91 | ?> |
91 | 92 | <tr style="margin-top: 5px;" id="videoslist"> |
92 | 93 | <td class="video-manager-left"> |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | <?php |
141 | 141 | $stmt = $__db->prepare("SELECT * FROM videos ORDER BY rand() LIMIT 4"); |
142 | 142 | $stmt->execute(); |
143 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
143 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
144 | 144 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
145 | 145 | $video['duration'] = $__time_h->timestamp($video['duration']); |
146 | 146 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -175,7 +175,7 @@ discard block |
||
175 | 175 | <?php |
176 | 176 | $stmt = $__db->prepare("SELECT * FROM videos ORDER BY rand() LIMIT 4"); |
177 | 177 | $stmt->execute(); |
178 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
178 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
179 | 179 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
180 | 180 | $video['duration'] = $__time_h->timestamp($video['duration']); |
181 | 181 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -210,7 +210,7 @@ discard block |
||
210 | 210 | <?php |
211 | 211 | $stmt = $__db->prepare("SELECT * FROM videos ORDER BY rand() LIMIT 4"); |
212 | 212 | $stmt->execute(); |
213 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
213 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
214 | 214 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
215 | 215 | $video['duration'] = $__time_h->timestamp($video['duration']); |
216 | 216 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -245,7 +245,7 @@ discard block |
||
245 | 245 | <?php |
246 | 246 | $stmt = $__db->prepare("SELECT * FROM videos ORDER BY rand() LIMIT 4"); |
247 | 247 | $stmt->execute(); |
248 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
248 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
249 | 249 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
250 | 250 | $video['duration'] = $__time_h->timestamp($video['duration']); |
251 | 251 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -280,7 +280,7 @@ discard block |
||
280 | 280 | <?php |
281 | 281 | $stmt = $__db->prepare("SELECT * FROM videos ORDER BY rand() LIMIT 4"); |
282 | 282 | $stmt->execute(); |
283 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
283 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
284 | 284 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
285 | 285 | $video['duration'] = $__time_h->timestamp($video['duration']); |
286 | 286 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -8,10 +8,10 @@ discard block |
||
8 | 8 | <?php $__db_h = new db_helper(); ?> |
9 | 9 | <?php $__time_h = new time_helper(); ?> |
10 | 10 | <?php |
11 | - $__server->page_embeds->page_title = "SubRocks - Recommended Videos"; |
|
12 | - $__server->page_embeds->page_description = "SubRocks is a site dedicated to bring back the 2012 layout of YouTube."; |
|
13 | - $__server->page_embeds->page_image = "/yt/imgbin/full-size-logo.png"; |
|
14 | - $__server->page_embeds->page_url = "https://subrock.rocks/"; |
|
11 | + $__server->page_embeds->page_title = "SubRocks - Recommended Videos"; |
|
12 | + $__server->page_embeds->page_description = "SubRocks is a site dedicated to bring back the 2012 layout of YouTube."; |
|
13 | + $__server->page_embeds->page_image = "/yt/imgbin/full-size-logo.png"; |
|
14 | + $__server->page_embeds->page_url = "https://subrock.rocks/"; |
|
15 | 15 | ?> |
16 | 16 | <!DOCTYPE html> |
17 | 17 | <html dir="ltr"> |
@@ -141,16 +141,16 @@ discard block |
||
141 | 141 | </div> |
142 | 142 | <div class="browse-item-row ytg-box"> |
143 | 143 | <?php |
144 | - $stmt = $__db->prepare("SELECT * FROM videos ORDER BY rand() LIMIT 4"); |
|
145 | - $stmt->execute(); |
|
146 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
147 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
148 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
149 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
150 | - $video['author'] = htmlspecialchars($video['author']); |
|
151 | - $video['title'] = htmlspecialchars($video['title']); |
|
152 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
153 | - ?> |
|
144 | + $stmt = $__db->prepare("SELECT * FROM videos ORDER BY rand() LIMIT 4"); |
|
145 | + $stmt->execute(); |
|
146 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
147 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
148 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
149 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
150 | + $video['author'] = htmlspecialchars($video['author']); |
|
151 | + $video['title'] = htmlspecialchars($video['title']); |
|
152 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
153 | + ?> |
|
154 | 154 | <div class="browse-item yt-tile-default "> |
155 | 155 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
156 | 156 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -176,16 +176,16 @@ discard block |
||
176 | 176 | </div> |
177 | 177 | <div class="browse-item-row ytg-box"> |
178 | 178 | <?php |
179 | - $stmt = $__db->prepare("SELECT * FROM videos ORDER BY rand() LIMIT 4"); |
|
180 | - $stmt->execute(); |
|
181 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
182 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
183 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
184 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
185 | - $video['author'] = htmlspecialchars($video['author']); |
|
186 | - $video['title'] = htmlspecialchars($video['title']); |
|
187 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
188 | - ?> |
|
179 | + $stmt = $__db->prepare("SELECT * FROM videos ORDER BY rand() LIMIT 4"); |
|
180 | + $stmt->execute(); |
|
181 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
182 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
183 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
184 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
185 | + $video['author'] = htmlspecialchars($video['author']); |
|
186 | + $video['title'] = htmlspecialchars($video['title']); |
|
187 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
188 | + ?> |
|
189 | 189 | <div class="browse-item yt-tile-default "> |
190 | 190 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
191 | 191 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -211,16 +211,16 @@ discard block |
||
211 | 211 | </div> |
212 | 212 | <div class="browse-item-row ytg-box"> |
213 | 213 | <?php |
214 | - $stmt = $__db->prepare("SELECT * FROM videos ORDER BY rand() LIMIT 4"); |
|
215 | - $stmt->execute(); |
|
216 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
217 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
218 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
219 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
220 | - $video['author'] = htmlspecialchars($video['author']); |
|
221 | - $video['title'] = htmlspecialchars($video['title']); |
|
222 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
223 | - ?> |
|
214 | + $stmt = $__db->prepare("SELECT * FROM videos ORDER BY rand() LIMIT 4"); |
|
215 | + $stmt->execute(); |
|
216 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
217 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
218 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
219 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
220 | + $video['author'] = htmlspecialchars($video['author']); |
|
221 | + $video['title'] = htmlspecialchars($video['title']); |
|
222 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
223 | + ?> |
|
224 | 224 | <div class="browse-item yt-tile-default "> |
225 | 225 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
226 | 226 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -246,16 +246,16 @@ discard block |
||
246 | 246 | </div> |
247 | 247 | <div class="browse-item-row ytg-box"> |
248 | 248 | <?php |
249 | - $stmt = $__db->prepare("SELECT * FROM videos ORDER BY rand() LIMIT 4"); |
|
250 | - $stmt->execute(); |
|
251 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
252 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
253 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
254 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
255 | - $video['author'] = htmlspecialchars($video['author']); |
|
256 | - $video['title'] = htmlspecialchars($video['title']); |
|
257 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
258 | - ?> |
|
249 | + $stmt = $__db->prepare("SELECT * FROM videos ORDER BY rand() LIMIT 4"); |
|
250 | + $stmt->execute(); |
|
251 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
252 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
253 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
254 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
255 | + $video['author'] = htmlspecialchars($video['author']); |
|
256 | + $video['title'] = htmlspecialchars($video['title']); |
|
257 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
258 | + ?> |
|
259 | 259 | <div class="browse-item yt-tile-default "> |
260 | 260 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
261 | 261 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -281,16 +281,16 @@ discard block |
||
281 | 281 | </div> |
282 | 282 | <div class="browse-item-row ytg-box"> |
283 | 283 | <?php |
284 | - $stmt = $__db->prepare("SELECT * FROM videos ORDER BY rand() LIMIT 4"); |
|
285 | - $stmt->execute(); |
|
286 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
287 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
288 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
289 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
290 | - $video['author'] = htmlspecialchars($video['author']); |
|
291 | - $video['title'] = htmlspecialchars($video['title']); |
|
292 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
293 | - ?> |
|
284 | + $stmt = $__db->prepare("SELECT * FROM videos ORDER BY rand() LIMIT 4"); |
|
285 | + $stmt->execute(); |
|
286 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
287 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
288 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
289 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
290 | + $video['author'] = htmlspecialchars($video['author']); |
|
291 | + $video['title'] = htmlspecialchars($video['title']); |
|
292 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
293 | + ?> |
|
294 | 294 | <div class="browse-item yt-tile-default "> |
295 | 295 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="ux-thumb-wrap yt-uix-sessionlink yt-uix-contextlink contains-addto " data-sessionlink="ei=CPjwu5ji3bICFS4RIQod9j-M-A%3D%3D&feature=b-mv"><span class="video-thumb ux-thumb yt-thumb-default-194 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="http://s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Thumbnail" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="194"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
296 | 296 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="rLHU-_OhT8g" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -93,7 +93,7 @@ |
||
93 | 93 | $stmt->bindParam(":username", $username); |
94 | 94 | $stmt->execute(); |
95 | 95 | } |
96 | - ?> |
|
96 | + ?> |
|
97 | 97 | {'paging': null, 'feed_html': ` |
98 | 98 | <div class=\'feed-header no-metadata\'> |
99 | 99 | <div class=\'feed-header-thumb\'> |
@@ -13,73 +13,73 @@ |
||
13 | 13 | <?php |
14 | 14 | if(!isset($_GET['action_load_user_feed'])) { |
15 | 15 | switch(@$_GET['chart_name']) { |
16 | - case "trending": |
|
17 | - $category = 'Trending'; |
|
18 | - $diviconn = 'trending'; |
|
19 | - break; |
|
20 | - case "popular": |
|
21 | - $category = 'Popular'; |
|
22 | - $diviconn = 'popular'; |
|
23 | - break; |
|
24 | - case "music": |
|
25 | - $category = 'Music'; |
|
26 | - $diviconn = 'music'; |
|
27 | - break; |
|
28 | - case "entertainment": |
|
29 | - $category = 'Entertainment'; |
|
30 | - $diviconn = 'entertainment'; |
|
31 | - break; |
|
32 | - case "sports": |
|
33 | - $category = 'Sports'; |
|
34 | - $diviconn = 'sports'; |
|
35 | - break; |
|
36 | - case "comedy": |
|
37 | - $category = 'Comedy'; |
|
38 | - $diviconn = 'comedy'; |
|
39 | - break; |
|
40 | - case "film": |
|
41 | - $category = 'Film & Animation'; |
|
42 | - $diviconn = 'film'; |
|
43 | - break; |
|
44 | - case "gadgets": |
|
45 | - $category = 'Gaming'; |
|
46 | - $diviconn = 'gadgets'; |
|
47 | - break; |
|
16 | + case "trending": |
|
17 | + $category = 'Trending'; |
|
18 | + $diviconn = 'trending'; |
|
19 | + break; |
|
20 | + case "popular": |
|
21 | + $category = 'Popular'; |
|
22 | + $diviconn = 'popular'; |
|
23 | + break; |
|
24 | + case "music": |
|
25 | + $category = 'Music'; |
|
26 | + $diviconn = 'music'; |
|
27 | + break; |
|
28 | + case "entertainment": |
|
29 | + $category = 'Entertainment'; |
|
30 | + $diviconn = 'entertainment'; |
|
31 | + break; |
|
32 | + case "sports": |
|
33 | + $category = 'Sports'; |
|
34 | + $diviconn = 'sports'; |
|
35 | + break; |
|
36 | + case "comedy": |
|
37 | + $category = 'Comedy'; |
|
38 | + $diviconn = 'comedy'; |
|
39 | + break; |
|
40 | + case "film": |
|
41 | + $category = 'Film & Animation'; |
|
42 | + $diviconn = 'film'; |
|
43 | + break; |
|
44 | + case "gadgets": |
|
45 | + $category = 'Gaming'; |
|
46 | + $diviconn = 'gadgets'; |
|
47 | + break; |
|
48 | 48 | } |
49 | 49 | |
50 | 50 | switch(@$_GET['feed_name']) { |
51 | - case "trending": |
|
52 | - $category = 'Trending'; |
|
53 | - $diviconn = 'trending'; |
|
54 | - break; |
|
55 | - case "popular": |
|
56 | - $category = 'Popular'; |
|
57 | - $diviconn = 'popular'; |
|
58 | - break; |
|
59 | - case "music": |
|
60 | - $category = 'Music'; |
|
61 | - $diviconn = 'music'; |
|
62 | - break; |
|
63 | - case "entertainment": |
|
64 | - $category = 'Entertainment'; |
|
65 | - $diviconn = 'entertainment'; |
|
66 | - break; |
|
67 | - case "sports": |
|
68 | - $category = 'Sports'; |
|
69 | - $diviconn = 'sports'; |
|
70 | - break; |
|
71 | - case "comedy": |
|
72 | - $category = 'Comedy'; |
|
73 | - $diviconn = 'comedy'; |
|
74 | - break; |
|
75 | - case "film": |
|
76 | - $category = 'Film & Animation'; |
|
77 | - $diviconn = 'film'; |
|
78 | - break; |
|
79 | - case "gadgets": |
|
80 | - $category = 'Gaming'; |
|
81 | - $diviconn = 'gadgets'; |
|
82 | - break; |
|
51 | + case "trending": |
|
52 | + $category = 'Trending'; |
|
53 | + $diviconn = 'trending'; |
|
54 | + break; |
|
55 | + case "popular": |
|
56 | + $category = 'Popular'; |
|
57 | + $diviconn = 'popular'; |
|
58 | + break; |
|
59 | + case "music": |
|
60 | + $category = 'Music'; |
|
61 | + $diviconn = 'music'; |
|
62 | + break; |
|
63 | + case "entertainment": |
|
64 | + $category = 'Entertainment'; |
|
65 | + $diviconn = 'entertainment'; |
|
66 | + break; |
|
67 | + case "sports": |
|
68 | + $category = 'Sports'; |
|
69 | + $diviconn = 'sports'; |
|
70 | + break; |
|
71 | + case "comedy": |
|
72 | + $category = 'Comedy'; |
|
73 | + $diviconn = 'comedy'; |
|
74 | + break; |
|
75 | + case "film": |
|
76 | + $category = 'Film & Animation'; |
|
77 | + $diviconn = 'film'; |
|
78 | + break; |
|
79 | + case "gadgets": |
|
80 | + $category = 'Gaming'; |
|
81 | + $diviconn = 'gadgets'; |
|
82 | + break; |
|
83 | 83 | } |
84 | 84 | |
85 | 85 | $stmt = $__db->prepare("SELECT * FROM videos WHERE category = :category ORDER BY id DESC LIMIT 20"); |
@@ -11,8 +11,8 @@ discard block |
||
11 | 11 | <?php $__time_h = new time_helper(); ?> |
12 | 12 | <?php header('Content-Type: application/json'); ?> |
13 | 13 | <?php |
14 | - if(!isset($_GET['action_load_user_feed'])) { |
|
15 | - switch(@$_GET['chart_name']) { |
|
14 | + if (!isset($_GET['action_load_user_feed'])) { |
|
15 | + switch (@$_GET['chart_name']) { |
|
16 | 16 | case "trending": |
17 | 17 | $category = 'Trending'; |
18 | 18 | $diviconn = 'trending'; |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | break; |
48 | 48 | } |
49 | 49 | |
50 | - switch(@$_GET['feed_name']) { |
|
50 | + switch (@$_GET['feed_name']) { |
|
51 | 51 | case "trending": |
52 | 52 | $category = 'Trending'; |
53 | 53 | $diviconn = 'trending'; |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | <div class=\'feed-page\'> |
108 | 108 | <ul> |
109 | 109 | <?php |
110 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
110 | + while ($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
111 | 111 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
112 | 112 | $video['duration'] = $__time_h->timestamp($video['duration']); |
113 | 113 | $video['views'] = $__video_h->fetch_video_views($video['rid']); |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | <?php $__db_h = new db_helper(); ?> |
10 | 10 | <?php $__time_h = new time_helper(); ?> |
11 | 11 | <?php |
12 | - if($_SERVER['REQUEST_METHOD'] == 'POST' && $_POST['password'] && $_POST['username']) { |
|
12 | + if ($_SERVER['REQUEST_METHOD'] == 'POST' && $_POST['password'] && $_POST['username']) { |
|
13 | 13 | $request = (object) [ |
14 | 14 | "username" => $_POST['username'], |
15 | 15 | "password" => $_POST['password'], |
@@ -26,19 +26,19 @@ discard block |
||
26 | 26 | $stmt->bindParam(":username", $request->username); |
27 | 27 | $stmt->execute(); |
28 | 28 | |
29 | - if(!$stmt->rowCount()){ |
|
29 | + if (!$stmt->rowCount()) { |
|
30 | 30 | { $request->error->message = "Incorrect username or password!"; $request->error->status = ""; } } |
31 | 31 | |
32 | 32 | $row = $stmt->fetch(PDO::FETCH_ASSOC); |
33 | - if(!isset($row['password'])) |
|
33 | + if (!isset($row['password'])) |
|
34 | 34 | { $request->error->message = "Incorrect username or password!"; $request->error->status = ""; } |
35 | 35 | else |
36 | 36 | { $request->returned_password = $row['password']; } |
37 | 37 | |
38 | - if(!password_verify($request->password, $request->returned_password)) |
|
38 | + if (!password_verify($request->password, $request->returned_password)) |
|
39 | 39 | { $request->error->message = "Incorrect username or password!"; $request->error->status = ""; } |
40 | 40 | |
41 | - if($request->error->status == "OK") { |
|
41 | + if ($request->error->status == "OK") { |
|
42 | 42 | $_SESSION['siteusername'] = $request->username; |
43 | 43 | header("Location: /"); |
44 | 44 | } else { |
@@ -33,8 +33,7 @@ |
||
33 | 33 | |
34 | 34 | $row = $stmt->fetch(PDO::FETCH_ASSOC); |
35 | 35 | if(!isset($row['password'])) |
36 | - { $request->error->message = "Incorrect username or password!"; $request->error->status = ""; } |
|
37 | - else |
|
36 | + { $request->error->message = "Incorrect username or password!"; $request->error->status = ""; } else |
|
38 | 37 | { $request->returned_password = $row['password']; } |
39 | 38 | |
40 | 39 | if(!password_verify($request->password, $request->returned_password)) |
@@ -11,8 +11,9 @@ |
||
11 | 11 | <?php |
12 | 12 | $rid = ""; |
13 | 13 | $characters = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-_'; |
14 | - for ($i = 0; $i < 11; $i++) |
|
15 | - $rid .= $characters[mt_rand(0, 63)]; |
|
14 | + for ($i = 0; $i < 11; $i++) { |
|
15 | + $rid .= $characters[mt_rand(0, 63)]; |
|
16 | + } |
|
16 | 17 | |
17 | 18 | $video_properties = (object) [ |
18 | 19 | 'video_rid' => $rid, |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | // $_FILES['video_file']['tmp_name'] = substr_replace($_FILES['video_file']['tmp_name'], '/', 8, 0); |
40 | 40 | /* -- /tmp/phpfAN4Xu -- Why in the fuck does this happen? I love PHP */ |
41 | 41 | |
42 | - if(move_uploaded_file( |
|
42 | + if (move_uploaded_file( |
|
43 | 43 | $_FILES['video_file']['tmp_name'], |
44 | 44 | "../dynamic/temp/" . $video_properties->video_rid . $video_validation->video_file_type |
45 | 45 | )) { |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | $video_validation->upload_ok = 0; |
50 | 50 | } |
51 | 51 | |
52 | - if( $video_validation->video_file_type == ".png" || |
|
52 | + if ($video_validation->video_file_type == ".png" || |
|
53 | 53 | $video_validation->video_file_type == ".jpg" || |
54 | 54 | $video_validation->video_file_type == ".jpeg" || |
55 | 55 | $video_validation->video_file_type == ".gif" |