PluginProbe ʕ •ᴥ•ʔ
WP Content Copy Protection & No Right Click / 3.7.4
WP Content Copy Protection & No Right Click v3.7.4
3.7.4 3.7.3 3.7.2 3.7.1 trunk 1.0 1.2 1.3 1.5.0.3 1.5.0.4 1.6 1.7 1.7.3 1.9 2.3 2.6 2.8.1 2.9 3.1 3.1.5 3.4 3.4.1 3.4.2 3.4.3 3.4.4 3.4.5 3.4.6 3.4.7 3.4.9 3.5.1 3.5.2 3.5.3 3.5.4 3.5.5 3.5.6 3.5.7 3.5.8 3.5.9 3.6.1 3.6.2 3.6.3 3.6.4 3.6.5 3.6.6 3.6.7 3.6.8 3.6.9 3.7
wp-content-copy-protector / the_globals.php
wp-content-copy-protector Last commit date
css 21 hours ago images 21 hours ago js 21 hours ago languages 21 hours ago admin-core.php 21 hours ago deactivation-survey.php 21 hours ago notifications.php 21 hours ago preventer-index.php 21 hours ago readme.txt 21 hours ago right-click-protection.jpg 21 hours ago the_globals.php 21 hours ago watermark-adv.jpg 21 hours ago watermarking-adv-examples.png 21 hours ago
the_globals.php
10 lines
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
3 //Get The Plugins URL as http://www.yrsite.com/dir/subdir
4 $wccp_free_pluginsurl = plugins_url( '', __FILE__ );
5 if(is_ssl())
6 {
7 $wccp_free_pluginsurl = str_replace("https:", "http:", $wccp_free_pluginsurl);// just to make sure that there is no https there
8 $wccp_free_pluginsurl = str_replace("http:", "https:", $wccp_free_pluginsurl);
9 }
10 ?>