A custom update checker for WordPress plugins. Useful if you don't want to host your project in the official WP repository, but would still like it to support automatic updates. Despite the name, it also works with themes.
Go to file
David Anderson c873f4c53d Add a filter to allow the consumer to receive customised information from the server
I have a need to receive extra information back from the server. In particular, I want to receive information that says "updates entitlement soon expires" or "updates entitlement already expired".

Currently, the functions in the class PluginUpdate_1_3 strip out anything not in the private $fields.

This change adds a filter to allow the consumer to retain any extra fields they wish.
2014-01-14 19:28:32 +00:00
css Fix a conflict with WordPress' "quick edit" feature. 2013-09-27 03:08:51 -07:00
js Actually, lets prefix our custom Debug Bar IDs with "puc" to be completely sure we'll avoid name collisions. 2012-10-27 12:30:35 +00:00
README.md Add a readme for GitHub. This is just a stub; people who want to use the library should read the relevant blog post. 2012-11-06 00:42:20 -08:00
debug-bar-panel.php Added an option to check updates less frequently if there's an update already available. 2013-11-29 04:13:32 -08:00
debug-bar-plugin.php Fix a conflict with WordPress' "quick edit" feature. 2013-09-27 03:08:51 -07:00
plugin-update-checker.php Add a filter to allow the consumer to receive customised information from the server 2014-01-14 19:28:32 +00:00

README.md

Plugin Update Checker

This is a custom update checker library for WordPress plugins. It lets you add automatic update notifications and one-click upgrades to your commercial and private plugins. All you need to do is put your plugin details in a JSON file, place the file on your server, and pass the URL to the library. The library periodically checks the URL to see if there's a new version available and displays an update notification to the user if necessary.

From the users' perspective, it works just like with plugins hosted on WordPress.org. The update checker uses the default plugin upgrade UI that will already be familiar to most WordPress users.

See this blog post for more information and usage instructions.