芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/optimyar/wp-content/plugins/ithemes-security-pro/lib/updater/updates.php
$data ) { if ( isset( $data['key'] ) ) { $keys[$package] = $data['key']; } else if ( isset( $data['status'] ) && ( 'inactive' == $data['status'] ) ) { $keys[$package] = ''; } } Ithemes_Updater_Keys::set( $keys ); $details = Ithemes_Updater_Packages::get_full_details( $response ); $updates = array( 'update_themes' => array(), 'update_themes_no_update' => array(), 'update_plugins' => array(), 'update_plugins_no_update' => array(), 'package_details' => array(), 'expiration' => $details['expiration'], ); if ( ! $cached ) { $updates['timestamp'] = time(); } if ( isset( $response['timeout_multiplier'] ) ) { $updates['timeout-multiplier'] = $response['timeout_multiplier']; } if ( ! isset( $updates['timeout-multiplier'] ) || ( $updates['timeout-multiplier'] < 1 ) ) { $updates['timeout-mulitplier'] = 1; } else if ( $updates['timeout-multiplier'] > 10 ) { $updates['timeout-mulitplier'] = 10; } $use_ssl = $GLOBALS['ithemes-updater-settings']->get_option( 'use_ssl' ); foreach ( $details['packages'] as $path => $data ) { if ( ! isset( $data['status'] ) ) { $data['status'] = $GLOBALS['ithemes-updater-settings']->get_license_status( $data['package'] ); } $updates['package_details'][$data['package']] = array( 'type' => $data['type'], 'path' => $path, 'version' => $data['installed'], 'license_status' => $data['status'], ); if ( empty( $data['package-url'] ) ) { continue; } $force_minor_version_update = $GLOBALS['ithemes-updater-settings']->get_option( 'force_minor_version_update' ); $quick_releases = $GLOBALS['ithemes-updater-settings']->get_option( 'quick_releases' ); $update_available = true; if ( version_compare( $data['installed'], $data['available'], '>=' ) ) { $update_available = false; } else if ( ( isset( $data['upgrade'] ) && ! $data['upgrade'] ) && ! $force_minor_version_update && ! $quick_releases ) { $update_available = false; } //$update = $data['wp_update_data']; if ( 'plugin' == $data['type'] ) { $update['slug'] = dirname( $path ); $update['plugin'] = $path; if ( isset( $update['compatibility'] ) && is_array( $update['compatibility'] ) ) { $update['compatibility'] = (object) $update['compatibility']; } } else { $update['theme'] = $path; $update['url'] = self_admin_url( 'plugin-install.php?tab=plugin-information&plugin=' . dirname( $path ) . '§ion=changelog&TB_iframe=true&width=600&height=800' ); } if ( ! $update_available ) { unset( $update['autoupdate'] ); unset( $update['disable_autoupdate'] ); unset( $update['upgrade_notice'] ); } if ( ! $use_ssl ) { $update['package'] = preg_replace( '/^https/', 'http', $update['package'] ); } if ( 'plugin' == $data['type'] ) { $update = (object) $update; } else { $path = dirname( $path ); } if ( $update_available ) { $updates["update_{$data['type']}s"][$path] = $update; } else { $updates["update_{$data['type']}s_no_update"][$path] = $update; } } $GLOBALS['ithemes-updater-settings']->update_options( $updates ); } }