forked from intoxstudio/restrict-user-access
-
Notifications
You must be signed in to change notification settings - Fork 0
/
restrict-user-access.php
61 lines (52 loc) · 1.96 KB
/
restrict-user-access.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
/**
* @package Restrict User Access
* @author Joachim Jensen <jv@intox.dk>
* @license GPLv3
* @copyright 2017 by Joachim Jensen
*/
/*
Plugin Name: Restrict User Access
Plugin URI:
Description: Easily restrict content and contexts to provide premium access for specific User Levels.
Version: 0.17.2
Author: Joachim Jensen
Author URI: https://dev.institute
Text Domain: restrict-user-access
License: GPLv3
Restrict User Access for WordPress
Copyright (C) 2015-2017 Joachim Jensen - jv@intox.dk
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
if (!defined('ABSPATH')) {
exit;
}
$rua_plugin_path = plugin_dir_path( __FILE__ );
require($rua_plugin_path.'/lib/wp-content-aware-engine/bootstrap.php');
require($rua_plugin_path.'/app.php');
require($rua_plugin_path.'/level.php');
require($rua_plugin_path.'/api/level.php');
if(is_admin()) {
require($rua_plugin_path.'/lib/wp-db-updater/wp-db-updater.php');
require($rua_plugin_path.'/db_updates.php');
require($rua_plugin_path.'/admin/admin.php');
require($rua_plugin_path.'/admin/level-list-table.php');
require($rua_plugin_path.'/admin/level-overview.php');
require($rua_plugin_path.'/admin/level-edit.php');
require($rua_plugin_path.'/admin/settings.php');
require($rua_plugin_path.'/admin/nav-menu.php');
require($rua_plugin_path.'/list-members.php');
require($rua_plugin_path.'/list-capabilities.php');
}
// Launch plugin
RUA_App::instance();
//eol