-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmincp.php
More file actions
22 lines (18 loc) · 861 Bytes
/
Copy pathadmincp.php
File metadata and controls
22 lines (18 loc) · 861 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?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();
}
// autoload admin panel files
require 'admin-panel/autoload.php';