OwlCyberSecurity - MANAGER
Edit File: class.km.autoupdate.plugins.v3.php
<?php // Prevent direct file access defined( 'LS_ROOT_FILE' ) || exit; /** * 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); // Suppress LayerSlider's update API hooks if there's a TGMPA action // taking place like updating the bundled version. This ensures that // we don't interfere with updates coming from theme authors. // // Do this only for unactivated sites to also maximize compatibility // the other way around, so TGMPA won't interfere with updates coming // from our repository to licensed customers. if( empty( $_GET['tgmpa-nonce'] ) || LS_Config::isActivatedSite() ) { // 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'), 10, 3); } // 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')); } }