????JFIF??x?x????'
| Server IP : 79.136.114.73 / Your IP : 216.73.216.217 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/www.astacus.eu/wp-content/plugins/LayerSlider/classes/ |
Upload File : |
<?php
/**
* Subclass of KM_Updates for plugins
*
* @package KM_Updates
* @since 4.6.3
* @author John Gera
* @copyright Copyright (c) 2013 John Gera, George Krupa, and Kreatura Media Kft.
*/
require_once dirname(__FILE__) . '/class.km.autoupdate.v3.php';
class KM_PluginUpdatesV3 extends KM_UpdatesV3 {
public function __construct($config) {
// Set up auto updater
parent::__construct($config);
// Hook into Plugins API to provide update info
add_filter('pre_set_site_transient_update_plugins', array(&$this, 'set_update_transient'));
add_filter('plugins_api', array(&$this, 'set_updates_api_results'), 10, 3);
// Add notices about plugin activation
add_filter('upgrader_pre_download', array(&$this, 'pre_download_filter' ), 10, 4);
add_action('in_plugin_update_message-'.plugin_basename($config['root']), array(&$this, 'update_message'));
// AJAX actions for site authorization
add_action('wp_ajax_layerslider_authorize_site', array(&$this, 'handleActivation'));
add_action('wp_ajax_layerslider_deauthorize_site', array(&$this, 'handleDeactivation'));
}
}