zZzzZ.
home2
/
zrzvbdry
/
public_html
/
wp-content
/
plugins
/
wp-auto-spinner
New Folder
Editing: updated.php
Save
Cancel
<?php // check curl , conflict with wp pinner function wp_auto_spinner_update_notice() { // installed version $plugin_data = get_plugin_data ( str_replace ( 'updated.php', 'wp-auto-spinner.php', __FILE__ ) ); $version = $plugin_data ['Version']; // current version $version_current = wp_auto_spinner_latest_version (); $version_diff = version_compare ( $version_current, $version ); if ($version_diff > 0) { ?> <div class="error"> <p><?php echo 'Please install the latest version ('.$version_current.') of <a href="http://codecanyon.net/item/wordpress-auto-spinner-articles-rewriter/4092452?ref=DeanDev" title="Download Now »">Wordpress Auto Spinner</a> which helps you stay up-to-date with the most stable, secure version the plugin. <a href="http://codecanyon.net/downloads?ref=DeanDev">Download Now »</a>'; ?></p> </div> <?php } } // function to get latest version return version function wp_auto_spinner_latest_version() { $latest_version = get_option ( 'wp_auto_spinner_version_last', '' ); if (trim ( $latest_version ) == '') { return wp_auto_spinner_update_version (); } else { // now a registred version is available let's send it if before 24h or update if more than that . $last_update = get_option ( 'wp_auto_spinner_version_updated', '1379233804' ); $diff = wp_auto_spinner_get_time_difference ( $last_update, time () ); if ($diff < 1440) { return $latest_version; } else { return wp_auto_spinner_update_version (); } return $latest_version; } } // function latest version // function to update latest version from deandev function wp_auto_spinner_update_version() { $plugin_data = get_plugin_data ( str_replace ( 'updated.php', 'wp-auto-spinner.php', __FILE__ ) ); $current_version = $plugin_data ['Version']; if (function_exists ( 'curl_init' )) { // curl ini $ch = curl_init (); curl_setopt ( $ch, CURLOPT_HEADER, 0 ); curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, 1 ); curl_setopt ( $ch, CURLOPT_CONNECTTIMEOUT, 10 ); curl_setopt ( $ch, CURLOPT_TIMEOUT, 20 ); curl_setopt ( $ch, CURLOPT_REFERER, 'http://www.bing.com/' ); curl_setopt ( $ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.8) Gecko/2009032609 Firefox/3.0.8' ); curl_setopt ( $ch, CURLOPT_MAXREDIRS, 5 ); // Good leeway for redirections. // curl get $x = 'error'; $url = 'http://deandev.com/versions/wp-auto-spinner.txt'; curl_setopt ( $ch, CURLOPT_HTTPGET, 1 ); curl_setopt ( $ch, CURLOPT_URL, trim ( $url ) ); $exec = curl_exec ( $ch ); $x = curl_error ( $ch ); // if connection failed if (trim ( $exec ) == '') $exec = $current_version; $version_current = $exec; update_option ( 'wp_auto_spinner_version_last', $version_current ); if (stristr ( $exec, '.' )) { update_option ( 'wp_auto_spinner_version_updated', time () ); return $exec; } else { update_option ( 'wp_auto_spinner_version_updated', '1.0.0' ); return '1.0.0'; } } } // end function updated version function wp_auto_spinner_get_time_difference($start, $end) { $uts ['start'] = $start; $uts ['end'] = $end; if ($uts ['start'] !== - 1 && $uts ['end'] !== - 1) { if ($uts ['end'] >= $uts ['start']) { $diff = $uts ['end'] - $uts ['start']; return round ( $diff / 60, 0 ); } } } // end function add_action ( 'admin_notices', 'wp_auto_spinner_update_notice' );