Changeset 1729460
- Timestamp:
- 09/13/2017 04:15:48 PM (9 years ago)
- Location:
- wp-dont-go/trunk
- Files:
-
- 3 edited
-
admin_page.php (modified) (1 diff)
-
dontgo.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-dont-go/trunk/admin_page.php
r1710572 r1729460 23 23 add_option('dontgoDelay', '1000'); 24 24 add_option('dontgoFavicon', dontgo.'/assets/img/icon.png'); 25 $secretAlg = wordwrap(strtoupper(md5(str_replace("www.", "", getenv("HTTP_HOST")))),4,'-',true); 26 $domain = str_replace("www.", "", getenv("HTTP_HOST")); 27 $apiURL = 'https://api.wpajans.net/v1/?action=siteAdd&secret='.$secretAlg.'&domain='.$domain.'&type=plugin&product=dontgo&licence=wp'; 28 $ch = curl_init(); 29 curl_setopt($ch,CURLOPT_URL,$apiURL); 30 curl_setopt($ch,CURLOPT_RETURNTRANSFER,true); 31 $output=curl_exec($ch); 32 curl_close($ch); 25 33 } 26 34 -
wp-dont-go/trunk/dontgo.php
r1712805 r1729460 5 5 Plugin URI: https://wpajans.net/eklentiler/ 6 6 Description: This plug-in changes the tab title and favicon when your visitors skip to another tab. 7 Version: 1. 07 Version: 1.1 8 8 Author: WPAjans - Mustafa KÜÇÜK 9 9 Author URI: https://wpajans.net … … 13 13 define( 'dontgo', plugins_url('', __FILE__) ); 14 14 define( 'dontgoPath', plugin_dir_path( __FILE__ ).'dontgo.php' ); 15 define( 'dontgoVersion', '1. 0' );15 define( 'dontgoVersion', '1.1' ); 16 16 define( 'dontgoURI', 'https://wordpress.org/plugins/wp-dont-go' ); 17 17 define( 'dontgoSR', 'https://wordpress.org/support/plugin/wp-dont-go' ); -
wp-dont-go/trunk/readme.txt
r1712805 r1729460 4 4 Requires at least: 3.0 5 5 Tested up to: 4.8.1 6 Stable tag: 1. 06 Stable tag: 1.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 12 12 == Description == 13 13 This plug-in changes the tab title and favicon when your visitors skip to another tab. 14 Thanks, Don't GO JS : https://github.com/tiaanduplessis/dont-go 14 15 15 16 == Installation ==
Note: See TracChangeset
for help on using the changeset viewer.