-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwp-copyright-protection.php
214 lines (176 loc) · 4.76 KB
/
wp-copyright-protection.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
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
<?php
/*
Plugin Name: WP-Copyright-Protection
Plugin URI: https://github.com/dligthart/wp-copyright-protection
Description: A simple way to add copyright protection to your website. Disables text copy, image copy and breaks out of iframe.
Author: dave.ligthart
Version: 1.6
Author URI: https://www.trivetechnology.com
*/
/**
* Main.
*
* @author Trive.amsterdam
* @package wpcp
* @subpackage core
* @version 1.6
*/
/** Back-End **/
if (is_admin()) { // admin actions
add_action('admin_menu', 'wpcp_create_menu');
add_action('admin_init', 'wpcp_register_options');
}
add_action('wp_head', 'wp_copyright_protection');
/**
* wpcp_create_menu function.
*
* @access public
* @return void
*/
function wpcp_create_menu()
{
add_options_page('WP-Copyright-Protection', 'WP-Copyright-Protection',
'manage_options', 'wpcp_options', 'wpcp_render_settings_page');
}
/**
* wpcp_register_options function.
*
* @access public
* @return void
*/
function wpcp_register_options()
{
register_setting('wpcp-group', 'wpcp_exclude_pages');
register_setting('wpcp-group', 'wpcp_disable_for_regusers');
}
/**
* wpcp_render_settings_page function.
*
* @access public
* @return void
*/
function wpcp_render_settings_page()
{
wp_enqueue_style('custom-css', plugins_url('/assets/css/style.css', __FILE__));
require('settings.php');
}
/**
* wpcp_is_excluded function.
*
* @access public
* @return boolean
*/
function wpcp_is_excluded()
{
$excludedPages = explode(',', get_option('wpcp_exclude_pages'));
if (is_array($excludedPages)) {
foreach ($excludedPages as $pageId) {
if (null != $pageId && is_page($pageId)) {
return true;
}
}
}
return false;
}
/**
* wpcp_is_disabled function.
*
* @access public
* @return boolean
*/
function wpcp_is_disabled()
{
$disabledForRegisteredUsers = get_option('wpcp_disable_for_regusers');
if ($disabledForRegisteredUsers) {
if (is_user_logged_in()) {
return true;
}
}
return false;
}
/** Front-End **/
/**
* wp_copyright_protection function.
*
* @access public
* @return void
*/
function wp_copyright_protection()
{
if (!wpcp_is_excluded() && !wpcp_is_disabled()) {
?>
<!-- Copyright protection script -->
<meta http-equiv="imagetoolbar" content="no">
<script>
/*<![CDATA[*/
document.oncontextmenu = function () {
return false;
};
/*]]>*/
</script>
<script type="text/javascript">
/*<![CDATA[*/
document.onselectstart = function () {
event = event || window.event;
var custom_input = event.target || event.srcElement;
if (custom_input.type !== "text" && custom_input.type !== "textarea" && custom_input.type !== "password") {
return false;
} else {
return true;
}
};
if (window.sidebar) {
document.onmousedown = function (e) {
var obj = e.target;
if (obj.tagName.toUpperCase() === 'SELECT'
|| obj.tagName.toUpperCase() === "INPUT"
|| obj.tagName.toUpperCase() === "TEXTAREA"
|| obj.tagName.toUpperCase() === "PASSWORD") {
return true;
} else {
return false;
}
};
}
window.onload = function () {
document.body.style.webkitTouchCallout = 'none';
document.body.style.KhtmlUserSelect = 'none';
}
/*]]>*/
</script>
<script type="text/javascript">
/*<![CDATA[*/
if (parent.frames.length > 0) {
top.location.replace(document.location);
}
/*]]>*/
</script>
<script>
/*<![CDATA[*/
document.ondragstart = function () {
return false;
};
/*]]>*/
</script>
<style type="text/css">
* {
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
img {
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
input, textarea, select {
-webkit-user-select: auto;
}
</style>
<!-- End Copyright protection script -->
<!-- Source hidden -->
<?php
}
}