-
Notifications
You must be signed in to change notification settings - Fork 5
/
admincp.php
32 lines (28 loc) · 1.04 KB
/
admincp.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
<?php
// +------------------------------------------------------------------------+
// | @author Deen Doughouz (DoughouzForest)
// | @author_url 1: http://www.playtubescript.com
// | @author_url 2: http://codecanyon.net/user/doughouzforest
// | @author_email: wowondersocial@gmail.com
// +------------------------------------------------------------------------+
// | PlayTube - The Ultimate Video Sharing Platform
// | Copyright (c) 2017 PlayTube. All rights reserved.
// +------------------------------------------------------------------------+
// You can access the admin panel by using the following url: http://yoursite.com/admincp
require 'assets/init.php';
if (IS_LOGGED == false || PT_IsAdmin() == false) {
header("Location: " . PT_Link(''));
exit();
}
if (!empty($_GET)) {
foreach ($_GET as $key => $value) {
$_GET[$key] = strip_tags($value);
}
}
if (!empty($_POST)) {
foreach ($_POST as $key => $value) {
$_POST[$key] = strip_tags($value);
}
}
// autoload admin panel files
require 'admin-panel/autoload.php';