[18] | 1 | <?php
|
---|
| 2 | /*
|
---|
| 3 | Plugin Name: Plugin for XPressME
|
---|
[193] | 4 | Plugin URI: http://ja.xpressme.info
|
---|
[18] | 5 | Description: Plugin for XPressME (custom function,filter,action)
|
---|
| 6 | Author: toemon
|
---|
[193] | 7 | Version: 1.0
|
---|
| 8 | Author URI: http://ja.xpressme.info
|
---|
[18] | 9 | */
|
---|
[19] | 10 | require_once('xpressme_class.php');
|
---|
[75] | 11 |
|
---|
[95] | 12 | require_once dirname( __FILE__ ).'/include/custom_functions.php' ; // XPressME functions for themes
|
---|
| 13 | require_once dirname( __FILE__ ).'/include/xpress_common_functions.php' ;
|
---|
[46] | 14 |
|
---|
| 15 | $xoops_db = new wpdb(DB_USER, DB_PASSWORD, DB_NAME, DB_HOST);
|
---|
| 16 | $xoops_db->prefix = get_xoops_prefix();
|
---|
| 17 | $xoops_db->tables = array('modules', 'newblocks', 'users');
|
---|
| 18 |
|
---|
[144] | 19 | $xpress_config = new XPressME_Class();
|
---|
[83] | 20 |
|
---|
| 21 | require_once dirname( __FILE__ ).'/include/pluggable-override.php' ;
|
---|
[360] | 22 | require_once dirname( __FILE__ ).'/include/functions_for_wp_old.php' ;
|
---|
[83] | 23 |
|
---|
[392] | 24 | if (!is_wordpress_style() && ( !empty($xpress_config->theme_select) || $xpress_config->theme_select != 'use_wordpress_select') ){
|
---|
| 25 | add_filter('stylesheet', 'xpress_Stylesheet');
|
---|
| 26 | add_filter('template', 'xpress_ThemeTemplate');
|
---|
| 27 | }
|
---|
| 28 | function xpress_Stylesheet($stylesheet) {
|
---|
| 29 | global $xpress_config;
|
---|
| 30 | $theme = $xpress_config->theme_select;
|
---|
| 31 | $theme = get_theme($theme);
|
---|
| 32 |
|
---|
| 33 | if (empty($theme)) {
|
---|
| 34 | return $stylesheet;
|
---|
| 35 | }
|
---|
| 36 | return $theme['Stylesheet'];
|
---|
| 37 | }
|
---|
| 38 |
|
---|
| 39 | function xpress_ThemeTemplate($template) {
|
---|
| 40 | global $xpress_config;
|
---|
| 41 | $theme = $xpress_config->theme_select;
|
---|
| 42 | $theme = get_theme($theme);
|
---|
| 43 |
|
---|
| 44 | if (empty($theme)) {
|
---|
| 45 | return $template;
|
---|
| 46 | }
|
---|
| 47 | return $theme['Template'];
|
---|
| 48 | }
|
---|
| 49 |
|
---|
[302] | 50 | function my_plugin_menu()
|
---|
| 51 | {
|
---|
[328] | 52 | global $xpress_config,$xoops_config;
|
---|
| 53 |
|
---|
[311] | 54 | $plugin_url = WP_PLUGIN_URL."/xpressme/";
|
---|
| 55 |
|
---|
[328] | 56 | // Add a new top-level menu:
|
---|
| 57 | add_menu_page('XPressME','XPressME', 8, __FILE__, 'display_option_page' , $plugin_url.'/images/menu_icon.png');
|
---|
| 58 | // Add submenus to the custom top-level menu:
|
---|
| 59 | add_submenu_page(__FILE__, __('Display Settings', 'xpressme'), __('Display Settings', 'xpressme'), 8, __FILE__, 'display_option_page');
|
---|
| 60 | add_submenu_page(__FILE__, __('Integration Settings', 'xpressme'), __('Integration Settings', 'xpressme'), 8, 'integration_option_page', 'integration_option_page');
|
---|
| 61 | add_submenu_page(__FILE__, __('Other Settings', 'xpressme'), __('Other Settings', 'xpressme'), 8, 'other_option_page', 'other_option_page');
|
---|
[370] | 62 | // if (function_exists('wp_remote_get'))
|
---|
[368] | 63 | add_submenu_page(__FILE__, __('Upgrade', 'xpressme'), __('Upgrade', 'xpressme'), 8, 'upgrade_page', 'upgrade_page');
|
---|
[380] | 64 | add_submenu_page(__FILE__, __('to Modules Admin', 'xpressme'), __('to Modules Admin', 'xpressme'), 8, 'redirect_xoops_admin', 'redirect_xoops_admin');
|
---|
[302] | 65 | }
|
---|
| 66 | add_action('admin_menu', 'my_plugin_menu');
|
---|
| 67 |
|
---|
[144] | 68 | add_filter("upload_dir",array(&$xpress_config, 'xpress_upload_filter'), 1); // Change wp-include/wp_upload_dir()
|
---|
| 69 | if (!$xpress_config->is_save_post_revision){
|
---|
[28] | 70 | remove_action( 'pre_post_update', 'wp_save_post_revision' ); // Not Save Post Revision
|
---|
| 71 | }
|
---|
[145] | 72 | add_action("wp_meta" , "wp_meta_add_xpress_menu"); // add xpress menu in wp_meta
|
---|
[182] | 73 |
|
---|
| 74 | //Site URL check
|
---|
| 75 | add_filter('option_home', "safe_site_url_filter");
|
---|
| 76 | add_filter('option_siteurl', "safe_site_url_filter");
|
---|
| 77 |
|
---|
[96] | 78 |
|
---|
| 79 | //XOOPS Bloack Cache Refresh
|
---|
[46] | 80 | add_action("comment_post", "block_cache_refresh");
|
---|
| 81 | add_action("edit_comment", "block_cache_refresh");
|
---|
[96] | 82 | add_action("wp_set_comment_status","block_cache_refresh"); //wp_delete_comment() at deleted
|
---|
| 83 | add_action("deleted_post", "block_cache_refresh");
|
---|
[46] | 84 | add_action("publish_post", "block_cache_refresh");
|
---|
| 85 | add_action("edit_post", "block_cache_refresh");
|
---|
| 86 | add_action("private_to_published", "block_cache_refresh");
|
---|
[96] | 87 | add_action("transition_post_status", "block_cache_refresh");
|
---|
[46] | 88 |
|
---|
[51] | 89 | add_action("the_content", "set_post_views_count");
|
---|
| 90 |
|
---|
[61] | 91 | //XOOPS notifiction
|
---|
| 92 | require_once dirname( __FILE__ ).'/include/notify_functions.php' ;
|
---|
[91] | 93 | add_action("transition_post_status", "onaction_publish_post_notify" ,10 , 3);
|
---|
[61] | 94 | // add_action("edit_post", "onaction_edit_post_notify");
|
---|
| 95 | add_action("comment_post", "onaction_comment_notify");
|
---|
| 96 | // add_action("approve_comment" , "onaction_comment_apobe_notify");
|
---|
| 97 | add_action("wp_set_comment_status" , "onaction_comment_apobe_notify");
|
---|
[51] | 98 |
|
---|
[72] | 99 | // user data sync user_sync_to_xoops($user_id)
|
---|
| 100 | require_once dirname( __FILE__ ).'/include/user_sync_xoops.php' ;
|
---|
| 101 | add_action('profile_update', 'user_sync_to_xoops');
|
---|
| 102 | add_action('user_register', 'user_sync_to_xoops');
|
---|
[32] | 103 | //require_once('../include/custom_functions.php');
|
---|
[88] | 104 |
|
---|
[104] | 105 | //D3Forum Comment Integration
|
---|
[144] | 106 | if ($xpress_config->is_use_d3forum){
|
---|
[104] | 107 | require_once dirname( __FILE__ ).'/include/d3forum_comment_synchro.php' ;
|
---|
| 108 | add_action("comment_post", "onaction_comment_post");
|
---|
| 109 | add_action("edit_comment", "onaction_edit_comment");
|
---|
| 110 | add_action("delete_comment","onaction_delete_comment");
|
---|
| 111 | add_action("delete_post", "onaction_delete_post");
|
---|
| 112 | add_action("wp_set_comment_status" , "onaction_comment_apobe");
|
---|
| 113 |
|
---|
| 114 |
|
---|
| 115 | add_filter('comments_template', "disp_d3forum_comments" );
|
---|
| 116 |
|
---|
| 117 | }
|
---|
| 118 |
|
---|
[155] | 119 |
|
---|
| 120 |
|
---|
[147] | 121 | //The trackback and the pingback are excluded from the count of the comment.
|
---|
| 122 | add_filter('get_comments_number', 'xpress_comment_count', 0);
|
---|
[104] | 123 |
|
---|
[155] | 124 | // Query filter for MultiUser
|
---|
| 125 | add_filter('query','xpress_query_filter');
|
---|
[236] | 126 | //add_action("init", "xpress_set_author_cookie");
|
---|
[360] | 127 | if(xpress_is_wp_version('<','2.1')){
|
---|
[281] | 128 | // It is called before parse_request() makes $GET.
|
---|
| 129 | add_action("query_vars", "xpress_set_author_cookie");
|
---|
| 130 | } else {
|
---|
| 131 | // It is called at the end of parse_request().
|
---|
| 132 | add_filter('request', 'xpress_set_author_cookie');
|
---|
| 133 | }
|
---|
[155] | 134 |
|
---|
[88] | 135 | // SQL debug windows
|
---|
[144] | 136 | add_filter('query', array(&$xpress_config, 'xpress_sql_debug'));
|
---|
| 137 | add_action('admin_footer', array(&$xpress_config, 'displayDebugLog'));
|
---|
[280] | 138 | add_action('wp_footer', array(&$xpress_config, 'displayDebugLog'));
|
---|
| 139 |
|
---|
[349] | 140 | function redirect_xoops_admin()
|
---|
| 141 | {
|
---|
| 142 | global $xoops_config,$xpress_config;
|
---|
| 143 | $xoops_admin_url = $xoops_config->module_url . '/admin/index.php';
|
---|
| 144 | wp_redirect($xoops_admin_url);
|
---|
| 145 | }
|
---|
[328] | 146 |
|
---|
| 147 | function display_option_page()
|
---|
| 148 | {
|
---|
| 149 | global $xoops_config,$xpress_config;
|
---|
| 150 |
|
---|
| 151 | $xoops_admin_url = $xoops_config->module_url . '/admin/index.php';
|
---|
| 152 |
|
---|
| 153 | $do_message ='';
|
---|
| 154 | if (!empty($_POST['submit_update'])) {
|
---|
| 155 | $xpress_config->ReadPostData($_POST);
|
---|
| 156 | $xpress_config->SettingValueWrite('update');
|
---|
| 157 | } else if (isset($_POST['submit_reset'])) {
|
---|
| 158 | $xpress_config->setDefault();
|
---|
| 159 | $xpress_config->SettingValueWrite('update');
|
---|
| 160 | }
|
---|
| 161 |
|
---|
| 162 | echo '<div class="wrap">'."\n";
|
---|
| 163 | echo '<div id="icon-options-general" class="icon32"><br /></div>'."\n";
|
---|
[332] | 164 | echo '<h2>' . __('XPressME Display Setting', 'xpressme') . "</h2><br>\n";
|
---|
[349] | 165 | // echo '<div align="right"><a href="' . $xoops_admin_url . '"><h3>'. __('to XOOPS Modules Admin Page', 'xpressme') . '</h3></a></div>';
|
---|
[328] | 166 | echo '<form method="post" action="' . $_SERVER["REQUEST_URI"] . '">'."\n" ;
|
---|
| 167 | echo '<table class="form-table">'."\n";
|
---|
| 168 | echo $xpress_config->viewer_type_option();
|
---|
| 169 | echo $xpress_config->yes_no_radio_option('is_theme_sidebar_disp',
|
---|
| 170 | __('Thema Sidebar Display','xpressme'),
|
---|
| 171 | __('YES','xpressme'),
|
---|
| 172 | __('NO','xpressme')
|
---|
| 173 | );
|
---|
| 174 | echo $xpress_config->single_post_navi_option();
|
---|
| 175 | echo $xpress_config->posts_page_navi_option();
|
---|
| 176 | echo $xpress_config->excerpt_option();
|
---|
[379] | 177 | echo $xpress_config->dashboard_display_option();
|
---|
[328] | 178 | echo "</table>\n";
|
---|
| 179 |
|
---|
| 180 | echo '<p class="submit">'."\n";
|
---|
| 181 | echo '<input type="submit" value= "' . __('Update Config', 'xpressme') . '" name="submit_update" />' ."\n";
|
---|
| 182 | echo '<input type="submit" value= "' . __('Preset Config', 'xpressme') . '" name="submit_reset" />' ."\n";
|
---|
| 183 | echo "</p>\n";
|
---|
| 184 |
|
---|
| 185 | echo "</form>\n" ;
|
---|
| 186 | echo "</div>\n";
|
---|
| 187 | }
|
---|
| 188 |
|
---|
| 189 | function integration_option_page()
|
---|
| 190 | {
|
---|
| 191 | global $xoops_config,$xpress_config;
|
---|
| 192 |
|
---|
| 193 | $xoops_admin_url = $xoops_config->module_url . '/admin/index.php';
|
---|
| 194 |
|
---|
| 195 | $do_message ='';
|
---|
| 196 | if (!empty($_POST['submit_update'])) {
|
---|
| 197 | $xpress_config->ReadPostData($_POST);
|
---|
| 198 | $xpress_config->SettingValueWrite('update');
|
---|
| 199 | } else if (isset($_POST['submit_reset'])) {
|
---|
| 200 | $xpress_config->setDefault();
|
---|
| 201 | $xpress_config->SettingValueWrite('update');
|
---|
| 202 | } else if (isset($_POST['export_d3f'])) {
|
---|
| 203 | $do_message = 'export(' . $xpress_config->d3forum_module_dir . '--ID=' . $xpress_config->d3forum_forum_id . ')................';
|
---|
| 204 | $do_message .= wp_to_d3forum($xpress_config->d3forum_forum_id, $xpress_config->d3forum_module_dir);
|
---|
| 205 | $do_message .= '....END';
|
---|
| 206 | } else if (isset($_POST['inport_d3f'])) {
|
---|
| 207 | $do_message = 'Import(' . $xpress_config->d3forum_module_dir . '--ID=' . $xpress_config->d3forum_forum_id . ')................';
|
---|
| 208 | $do_message .= d3forum_to_wp($xpress_config->d3forum_forum_id, $xpress_config->d3forum_module_dir);
|
---|
| 209 | $do_message .= '....END';
|
---|
| 210 | }
|
---|
| 211 |
|
---|
| 212 | echo '<div class="wrap">'."\n";
|
---|
| 213 | echo '<div id="icon-options-general" class="icon32"><br /></div>'."\n";
|
---|
[332] | 214 | echo '<h2>' . __('XPressME Integration Setting', 'xpressme') . "</h2><br>\n";
|
---|
[349] | 215 | // echo '<div align="right"><a href="' . $xoops_admin_url . '"><h3>'. __('to XOOPS Modules Admin Page', 'xpressme') . '</h3></a></div>';
|
---|
[328] | 216 | echo '<form method="post" action="' . $_SERVER["REQUEST_URI"] . '">'."\n" ;
|
---|
| 217 | echo '<table class="form-table">'."\n";
|
---|
| 218 | echo $xpress_config->yes_no_radio_option('is_use_xoops_upload_path',
|
---|
| 219 | __('Media Upload Base Path','xpressme'),
|
---|
| 220 | __('Use XOOPS UPLOAD PATH','xpressme'),
|
---|
| 221 | __('USE WordPress BASE_PATH','xpressme')
|
---|
| 222 | );
|
---|
| 223 |
|
---|
| 224 | echo $xpress_config->groupe_role_option();
|
---|
| 225 |
|
---|
| 226 | echo $xpress_config->d3forum_option($do_message);
|
---|
| 227 | echo "</table>\n";
|
---|
| 228 |
|
---|
| 229 | echo '<p class="submit">'."\n";
|
---|
| 230 | echo '<input type="submit" value= "' . __('Update Config', 'xpressme') . '" name="submit_update" />' ."\n";
|
---|
| 231 | echo '<input type="submit" value= "' . __('Preset Config', 'xpressme') . '" name="submit_reset" />' ."\n";
|
---|
| 232 | echo "</p>\n";
|
---|
| 233 |
|
---|
| 234 | echo "</form>\n" ;
|
---|
| 235 | echo "</div>\n";
|
---|
| 236 | }
|
---|
| 237 |
|
---|
| 238 | function other_option_page()
|
---|
| 239 | {
|
---|
| 240 | global $xoops_config,$xpress_config;
|
---|
| 241 |
|
---|
| 242 | $xoops_admin_url = $xoops_config->module_url . '/admin/index.php';
|
---|
| 243 |
|
---|
| 244 | $do_message ='';
|
---|
| 245 | if (!empty($_POST['submit_update'])) {
|
---|
| 246 | $xpress_config->ReadPostData($_POST);
|
---|
| 247 | $xpress_config->SettingValueWrite('update');
|
---|
| 248 | } else if (isset($_POST['submit_reset'])) {
|
---|
| 249 | $xpress_config->setDefault();
|
---|
| 250 | $xpress_config->SettingValueWrite('update');
|
---|
| 251 | }
|
---|
| 252 |
|
---|
| 253 | echo '<div class="wrap">'."\n";
|
---|
| 254 | echo '<div id="icon-options-general" class="icon32"><br /></div>'."\n";
|
---|
[332] | 255 | echo '<h2>' . __('XPressME Other Setting', 'xpressme') . "</h2><br>\n";
|
---|
[349] | 256 | // echo '<div align="right"><a href="' . $xoops_admin_url . '"><h3>'. __('to XOOPS Modules Admin Page', 'xpressme') . '</h3></a></div>';
|
---|
[328] | 257 | echo '<form method="post" action="' . $_SERVER["REQUEST_URI"] . '">'."\n" ;
|
---|
| 258 | echo '<table class="form-table">'."\n";
|
---|
| 259 | echo $xpress_config->yes_no_radio_option('is_save_post_revision',
|
---|
| 260 | __('The change tracking of the post is preserved','xpressme'),
|
---|
| 261 | __('YES','xpressme'),
|
---|
| 262 | __('NO','xpressme')
|
---|
| 263 | );
|
---|
| 264 |
|
---|
| 265 | echo $xpress_config->yes_no_radio_option('is_multi_user',
|
---|
| 266 | __('Select Multi user mode','xpressme'),
|
---|
| 267 | __('YES','xpressme'),
|
---|
| 268 | __('NO','xpressme')
|
---|
| 269 | );
|
---|
| 270 | echo $xpress_config->yes_no_radio_option('is_author_view_count',
|
---|
| 271 | __('Is the posts author views counted?','xpressme'),
|
---|
| 272 | __('YES','xpressme'),
|
---|
| 273 | __('NO','xpressme')
|
---|
| 274 | );
|
---|
| 275 | echo $xpress_config->header_meta_option();
|
---|
| 276 | echo $xpress_config->yes_no_radio_option('is_sql_debug',
|
---|
| 277 | __('Is SQL debugging window displayed?','xpressme'),
|
---|
| 278 | __('YES','xpressme'),
|
---|
| 279 | __('NO','xpressme')
|
---|
| 280 | );
|
---|
| 281 | echo "</table>\n";
|
---|
| 282 |
|
---|
| 283 | echo '<p class="submit">'."\n";
|
---|
| 284 | echo '<input type="submit" value= "' . __('Update Config', 'xpressme') . '" name="submit_update" />' ."\n";
|
---|
| 285 | echo '<input type="submit" value= "' . __('Preset Config', 'xpressme') . '" name="submit_reset" />' ."\n";
|
---|
| 286 | echo "</p>\n";
|
---|
| 287 |
|
---|
| 288 | echo "</form>\n" ;
|
---|
| 289 | echo "</div>\n";
|
---|
| 290 | }
|
---|
| 291 |
|
---|
[368] | 292 | function upgrade_page()
|
---|
| 293 | {
|
---|
| 294 | global $xoops_config,$xpress_config;
|
---|
| 295 |
|
---|
| 296 | $xpress_version = $xoops_config->module_version . $xoops_config->module_codename;
|
---|
| 297 | $check_url = "http://ja1.xpressme.info/version_check/?version=$xpress_version";
|
---|
| 298 |
|
---|
| 299 | echo '<div class="wrap">'."\n";
|
---|
| 300 | echo '<div id="icon-options-general" class="icon32"><br /></div>'."\n";
|
---|
| 301 | echo '<h2>' . __('XPressME Upgrade', 'xpressme') . "</h2><br>\n";
|
---|
| 302 |
|
---|
| 303 | if(get_xpress_latest_version()){
|
---|
| 304 | $latest = get_option('xpressme_latest_version');
|
---|
| 305 | if ($latest) {
|
---|
| 306 | $site_url=$latest['url'];
|
---|
| 307 | $package=$latest['package'];
|
---|
| 308 | $latest_version=$latest['latest_version'];
|
---|
| 309 | $check_time=$latest['check_time'];
|
---|
| 310 | }
|
---|
| 311 |
|
---|
| 312 |
|
---|
| 313 | if (version_compare($xpress_version, $latest_version, '>')){
|
---|
| 314 | echo '<h3 class="response">';
|
---|
| 315 | printf(__('You are using a XPressME Integration Kit development version (%1$s). Cool! Please <a href="%2$s">stay updated</a>.', 'xpressme') , $xpress_version , $site_url);
|
---|
| 316 | echo '</h3>';
|
---|
| 317 |
|
---|
| 318 | } else if (version_compare($xpress_version, $latest_version, '<')) {
|
---|
| 319 | echo '<h3 class="response">'. __('There is a new version of XPressME Integration Kit available for upgrade', 'xpressme') . '</h3>';
|
---|
| 320 | echo '<p>';
|
---|
| 321 | // printf(__('You can upgrade to version %s automatically or download the package and install it manually:'),$latest_version);
|
---|
| 322 | printf(__('You can upgrade to version %s download the package and install it manually:', 'xpressme'),$latest_version);
|
---|
| 323 | echo '</p>';
|
---|
| 324 | echo '<a class="button" href="' . $package . '">';
|
---|
| 325 | printf(__('Download %s', 'xpressme') , $latest_version);
|
---|
| 326 | echo '</a>';
|
---|
| 327 | } else {
|
---|
| 328 | echo '<h3 class="response">'. __('You have the latest version of XPressME Integration Kit. You do not need to upgrade', 'xpressme') . '</h3>';
|
---|
| 329 | }
|
---|
| 330 | } else {
|
---|
| 331 | echo '<h3 class="response">';
|
---|
| 332 | printf(__('There is no response from <a href="%s">version check API</a> now. sorry, please confirm it after.', 'xpressme'),$check_url);
|
---|
| 333 | echo "</div>\n";
|
---|
| 334 | }
|
---|
| 335 | }
|
---|
| 336 |
|
---|
[370] | 337 | function xp_remote_get($url, $headers = ""){
|
---|
| 338 | global $xoops_config;
|
---|
| 339 | $xpress_version = $xoops_config->module_version . $xoops_config->module_codename;
|
---|
| 340 |
|
---|
| 341 | require_once( $xoops_config->module_path . '/wp-includes/class-snoopy.php');
|
---|
| 342 |
|
---|
| 343 | // Snoopy is an HTTP client in PHP
|
---|
| 344 | $client = new Snoopy();
|
---|
| 345 | $client->agent = 'XPressME/' . $xpress_version;
|
---|
| 346 | $client->read_timeout = 2;
|
---|
| 347 | if (is_array($headers) ) {
|
---|
| 348 | $client->rawheaders = $headers;
|
---|
| 349 | }
|
---|
| 350 |
|
---|
| 351 | @$client->fetch($url);
|
---|
| 352 | $response['response']['code'] = $client->status;
|
---|
| 353 | $response['body'] = $client->results;
|
---|
| 354 | return $response;
|
---|
| 355 | return $client;
|
---|
| 356 |
|
---|
| 357 | }
|
---|
| 358 |
|
---|
[368] | 359 | function get_xpress_latest_version(){
|
---|
| 360 | global $wp_version, $wpdb, $wp_local_package;
|
---|
| 361 | global $xoops_config;
|
---|
| 362 |
|
---|
| 363 | $xpress_version = $xoops_config->module_version . $xoops_config->module_codename;
|
---|
| 364 |
|
---|
| 365 | $check_url = "http://ja.xpressme.info/version_check/?version=$xpress_version";
|
---|
| 366 | $request_options = array(
|
---|
| 367 | 'timeout' => 3,
|
---|
| 368 | 'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' )
|
---|
| 369 | );
|
---|
| 370 |
|
---|
[370] | 371 | if (! function_exists('wp_remote_get')) {
|
---|
| 372 | $response = xp_remote_get($check_url);
|
---|
| 373 |
|
---|
| 374 | if (empty($response['body'])) return false;
|
---|
| 375 | } else {
|
---|
[368] | 376 |
|
---|
[370] | 377 | $response = wp_remote_get($check_url, $request_options);
|
---|
| 378 |
|
---|
| 379 | if ( is_wp_error( $response ) )
|
---|
| 380 | return false;
|
---|
| 381 | }
|
---|
[368] | 382 | if ( 200 != $response['response']['code'] )
|
---|
| 383 | return false;
|
---|
| 384 | $body = trim( $response['body'] );
|
---|
| 385 | $body = str_replace(array("\r\n", "\r"), "\n", $body);
|
---|
| 386 | $returns = explode("\n", $body);
|
---|
[370] | 387 | $response = $returns[0];
|
---|
[368] | 388 | if ( isset( $returns[1] ) )
|
---|
[370] | 389 | $url = clean_url( $returns[1] );
|
---|
[368] | 390 | if ( isset( $returns[2] ) )
|
---|
[370] | 391 | $package = clean_url( $returns[2] );
|
---|
[368] | 392 | if ( isset( $returns[3] ) )
|
---|
[370] | 393 | $latest_version = $returns[3];
|
---|
[368] | 394 |
|
---|
| 395 | $write_options = array (
|
---|
| 396 | 'url' => $url ,
|
---|
| 397 | 'package' => $package ,
|
---|
| 398 | 'latest_version' => $latest_version ,
|
---|
| 399 | 'check_time' => time()
|
---|
| 400 | );
|
---|
| 401 |
|
---|
| 402 | $latest_version = get_option('xpressme_latest_version');
|
---|
| 403 | if (!$latest_version) {
|
---|
| 404 | add_option('xpressme_latest_version', $write_options);
|
---|
| 405 | } else {
|
---|
| 406 | update_option('xpressme_latest_version', $write_options);
|
---|
| 407 | }
|
---|
| 408 | return true;
|
---|
| 409 | }
|
---|
| 410 |
|
---|
| 411 | function xpress_update_check() {
|
---|
| 412 | if ( defined('WP_INSTALLING') )
|
---|
| 413 | return;
|
---|
| 414 | global $pagenow;
|
---|
| 415 |
|
---|
| 416 | $php_query_string = $_SERVER['QUERY_STRING'];
|
---|
| 417 |
|
---|
| 418 | if ( 'admin.php' == $pagenow && 'page=upgrade_page' == $php_query_string)
|
---|
| 419 | return;
|
---|
| 420 |
|
---|
| 421 | global $wp_version, $wpdb, $wp_local_package;
|
---|
| 422 | global $xoops_config;
|
---|
| 423 |
|
---|
| 424 | $php_query_string = $_SERVER['QUERY_STRING'];
|
---|
| 425 | $xpress_version = $xoops_config->module_version . $xoops_config->module_codename;
|
---|
| 426 |
|
---|
| 427 | $latest = get_option('xpressme_latest_version');
|
---|
| 428 | if (!$latest ) {
|
---|
| 429 | get_xpress_latest_version();
|
---|
| 430 | $latest = get_option('xpressme_latest_version');
|
---|
| 431 | }
|
---|
| 432 |
|
---|
| 433 | if ($latest) {
|
---|
| 434 | $next_check = $latest['check_time'] + (60*60*24);
|
---|
| 435 | $now_time = time();
|
---|
| 436 | if ($next_check < $now_time ){
|
---|
| 437 | get_xpress_latest_version();
|
---|
| 438 | $latest = get_option('xpressme_latest_version');
|
---|
| 439 | }
|
---|
| 440 | }
|
---|
| 441 |
|
---|
| 442 | if ($latest) {
|
---|
| 443 | $url=$latest['url'];
|
---|
| 444 | $package=$latest['package'];
|
---|
| 445 | $latest_version=$latest['latest_version'];
|
---|
| 446 | $check_time=$latest['check_time'];
|
---|
| 447 | $upgrade_page = $xoops_config->module_url . "/wp-admin/admin.php?page=upgrade_page";
|
---|
| 448 |
|
---|
| 449 | if (version_compare($xpress_version, $latest_version, '<')) {
|
---|
| 450 | if ( current_user_can('manage_options') ){
|
---|
| 451 | $msg = sprintf( __('XPressME Integration Kit Version %1$s is available! <a href="%2$s">Please update now</a>.', 'xpressme'), $latest_version, $upgrade_page );
|
---|
| 452 | } else {
|
---|
| 453 | $msg = sprintf( __('XPressME Integration Kit Version %1$s is available! Please notify the site administrator.', 'xpressme'), $latest_version );
|
---|
| 454 | }
|
---|
| 455 | echo "<div id='update-nag'>$msg </div>";
|
---|
| 456 | }
|
---|
| 457 | }
|
---|
| 458 | }
|
---|
| 459 |
|
---|
| 460 | add_action( 'admin_notices', 'xpress_update_check', 3 );
|
---|
[376] | 461 |
|
---|
| 462 | include_once dirname( __FILE__ ).'/include/dashboard_feed.php' ;
|
---|
| 463 |
|
---|
[400] | 464 | include_once dirname( __FILE__ ).'/xpressme_widget_class.php' ;
|
---|
| 465 |
|
---|
[18] | 466 | ?> |
---|