Skip to content

Commit

Permalink
Merge branch 'feature/#389' into 000000-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
raamdev committed Jan 4, 2015
2 parents 1eeb6a7 + 0cef2ae commit e4de7d1
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions quick-cache-pro/quick-cache-pro.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -407,6 +407,7 @@ public function setup()

add_filter('enable_live_network_counts', array($this, 'update_blog_paths'));

add_filter('fs_ftp_connection_types', array($this, 'fs_ftp_connection_types'));
add_filter('pre_site_transient_update_plugins', array($this, 'pre_site_transient_update_plugins'));

add_filter('plugin_action_links_'.plugin_basename($this->file), array($this, 'add_settings_link'));
Expand Down Expand Up @@ -894,6 +895,44 @@ public function check_update_sync_version()
$update_sync_page, $update_sync_response['version']), 'persistent-update-sync-version');
}

/**
* Appends hidden inputs for pro updater when FTP credentials are requested by WP.
*
* @since 14xxxx See: <https://github.com/websharks/quick-cache/issues/389#issuecomment-68620617>
*
* @attaches-to `fs_ftp_connection_types` filter.
*
* @param array $types Types of connections.
*
* @return array $types Types of connections.
*/
public function fs_ftp_connection_types($types)
{
if(!is_admin() || $GLOBALS['pagenow'] !== 'update.php')
return $types; // Nothing to do here.

$_r = array_map('trim', stripslashes_deep($_REQUEST));

if(empty($_r['action']) || $_r['action'] !== 'upgrade-plugin')
return $types; // Nothing to do here.

if(empty($_r[__NAMESPACE__.'__update_version']) || !($update_version = (string)$_r[__NAMESPACE__.'__update_version']))
return $types; // Nothing to do here.

if(empty($_r[__NAMESPACE__.'__update_zip']) || !($update_zip = (string)$_r[__NAMESPACE__.'__update_zip']))
return $types; // Nothing to do here.

echo '<script type="text/javascript">';
echo ' (function($){ $(document).ready(function(){';
echo ' var $form = $(\'input#hostname\').closest(\'form\');';
echo ' $form.append(\'<input type="hidden" name="'.esc_attr(__NAMESPACE__.'__update_version').'" value="'.esc_attr($update_version).'" />\');';
echo ' $form.append(\'<input type="hidden" name="'.esc_attr(__NAMESPACE__.'__update_zip').'" value="'.esc_attr($update_zip).'" />\');';
echo ' }); })(jQuery);';
echo '</script>';

return $types; // Filter through.
}

/**
* Modifies transient data associated with this plugin.
*
Expand Down

0 comments on commit e4de7d1

Please sign in to comment.