Version Description
- Settings Page Updated (Added Tutorial to Settings Page)
- Video Tutorial Updated
- New Settings Page Name (Disable Updates)
Download this release
Release Info
| Developer | kidsguide |
| Plugin | |
| Version | 2.2.0 |
| Comparing to | |
| See all releases | |
Code changes from version 2.1.0 to 2.2.0
- Function.php +26 -8
- readme.txt +18 -15
Function.php
CHANGED
|
@@ -2,12 +2,12 @@
|
|
| 2 |
/**
|
| 3 |
* @package Disable All Updates
|
| 4 |
* @author Websiteguy
|
| 5 |
-
* @version 2.
|
| 6 |
*/
|
| 7 |
/*
|
| 8 |
Plugin Name: Disable All Updates
|
| 9 |
Plugin URI: http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/
|
| 10 |
-
Version: 2.
|
| 11 |
Description: A simple WordPress plugin that disables all the updating of plugins, themes, and the WordPress core. Just fill out the settings.
|
| 12 |
Author: Websiteguy
|
| 13 |
Author URI: http://profiles.wordpress.org/kidsguide/
|
|
@@ -80,7 +80,7 @@ class Update_Notifications {
|
|
| 80 |
{
|
| 81 |
|
| 82 |
// Add submenu in menu "Settings"
|
| 83 |
-
add_submenu_page( 'index.php', 'Disable
|
| 84 |
}
|
| 85 |
|
| 86 |
function load_update_notifications()
|
|
@@ -213,7 +213,7 @@ break;
|
|
| 213 |
?>
|
| 214 |
|
| 215 |
<div class="wrap">
|
| 216 |
-
|
| 217 |
<h2><?php _e('Disable All Updates Settings','update-notifications-manager'); ?></h2>
|
| 218 |
|
| 219 |
<form method="post" action="options.php">
|
|
@@ -224,7 +224,7 @@ break;
|
|
| 224 |
|
| 225 |
<tr>
|
| 226 |
<p class="submit">
|
| 227 |
-
<input type="submit" class="button-primary" value="<?php _e('Save
|
| 228 |
<th scope="row"><?php _e('Disable Updates:', 'update-notifications-manager') ?></th>
|
| 229 |
<td>
|
| 230 |
<fieldset>
|
|
@@ -255,11 +255,29 @@ break;
|
|
| 255 |
</fieldset>
|
| 256 |
</td>
|
| 257 |
</tr>
|
| 258 |
-
|
| 259 |
-
|
|
|
|
| 260 |
<p class="submit">
|
| 261 |
-
<input type="submit" class="button-primary" value="<?php _e('Save
|
| 262 |
</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 263 |
|
| 264 |
</form>
|
| 265 |
|
| 2 |
/**
|
| 3 |
* @package Disable All Updates
|
| 4 |
* @author Websiteguy
|
| 5 |
+
* @version 2.2.0
|
| 6 |
*/
|
| 7 |
/*
|
| 8 |
Plugin Name: Disable All Updates
|
| 9 |
Plugin URI: http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/
|
| 10 |
+
Version: 2.2.0
|
| 11 |
Description: A simple WordPress plugin that disables all the updating of plugins, themes, and the WordPress core. Just fill out the settings.
|
| 12 |
Author: Websiteguy
|
| 13 |
Author URI: http://profiles.wordpress.org/kidsguide/
|
| 80 |
{
|
| 81 |
|
| 82 |
// Add submenu in menu "Settings"
|
| 83 |
+
add_submenu_page( 'index.php', 'Disable Updates', __('Disable Updates','update-notifications-manager'), 'administrator', __FILE__, array(&$this, 'display_page') );
|
| 84 |
}
|
| 85 |
|
| 86 |
function load_update_notifications()
|
| 213 |
?>
|
| 214 |
|
| 215 |
<div class="wrap">
|
| 216 |
+
<?php screen_icon(); ?>
|
| 217 |
<h2><?php _e('Disable All Updates Settings','update-notifications-manager'); ?></h2>
|
| 218 |
|
| 219 |
<form method="post" action="options.php">
|
| 224 |
|
| 225 |
<tr>
|
| 226 |
<p class="submit">
|
| 227 |
+
<input type="submit" class="button-primary" value="<?php _e('Save') ?>" />
|
| 228 |
<th scope="row"><?php _e('Disable Updates:', 'update-notifications-manager') ?></th>
|
| 229 |
<td>
|
| 230 |
<fieldset>
|
| 255 |
</fieldset>
|
| 256 |
</td>
|
| 257 |
</tr>
|
| 258 |
+
<tr>
|
| 259 |
+
<td>
|
| 260 |
+
<fieldset>
|
| 261 |
<p class="submit">
|
| 262 |
+
<input type="submit" class="button-primary" value="<?php _e('Save') ?>" />
|
| 263 |
</p>
|
| 264 |
+
</fieldset>
|
| 265 |
+
</td>
|
| 266 |
+
</tr>
|
| 267 |
+
<tr>
|
| 268 |
+
|
| 269 |
+
<th scope="row"><?php _e('Video Tutorial:', 'update-notifications-manager') ?></th>
|
| 270 |
+
<td>
|
| 271 |
+
|
| 272 |
+
<fieldset>
|
| 273 |
+
<label>
|
| 274 |
+
<iframe width="560" height="315" src="//www.youtube.com/embed/ESOSt_ebiwM" frameborder="0" allowfullscreen></iframe>
|
| 275 |
+
</label>
|
| 276 |
+
</fieldset>
|
| 277 |
+
</td>
|
| 278 |
+
</tr>
|
| 279 |
+
|
| 280 |
+
</table>
|
| 281 |
|
| 282 |
</form>
|
| 283 |
|
readme.txt
CHANGED
|
@@ -8,7 +8,7 @@ Tested up to: 3.8
|
|
| 8 |
Stable tag: trunk
|
| 9 |
|
| 10 |
|
| 11 |
-
A simple WordPress plugin that disables all the updating of plugins, themes, and the WordPress core.
|
| 12 |
|
| 13 |
|
| 14 |
|
|
@@ -20,32 +20,32 @@ This way you can pick your favourite version of the plugin (theme, or WordPress
|
|
| 20 |
|
| 21 |
This plugin is simple and easy.
|
| 22 |
|
| 23 |
-
Their are settings for this plugin under the Dashboard
|
| 24 |
|
| 25 |
-
This plugin is better then any other plugin in its class because it
|
| 26 |
-
|
| 27 |
<li>Turns of WordPress automatic updates</li>
|
| 28 |
<li>It disables e-mail noticfactions for updates</li>
|
| 29 |
-
<li>
|
| 30 |
-
</ol>
|
| 31 |
|
| 32 |
And More...
|
| 33 |
|
| 34 |
= Video Tutorial =
|
| 35 |
-
[youtube http://www.youtube.com/
|
| 36 |
|
| 37 |
-
|
| 38 |
-
With the new settings form under dashboard, it easy. Just check the things you won't disabled
|
| 39 |
|
| 40 |
= Check Out Our Newest Plugin! =
|
| 41 |
<li><a href="http://wordpress.org/plugins/remove-the-updates-submenu/">Remove the Updates Submenu</a></li>
|
| 42 |
It removes the updates submenu.
|
| 43 |
|
| 44 |
== Frequently Asked Questions ==
|
|
|
|
| 45 |
= Q: Is their a way to disable only one or two of these? =
|
| 46 |
A: Yes, in the settings you can disable one, two, or three.
|
| 47 |
|
| 48 |
-
|
| 49 |
= Q: How is this plugin diferent from the other disable updates plugins? =
|
| 50 |
A: Their are a couple of differences.
|
| 51 |
<ol>
|
|
@@ -57,15 +57,13 @@ A: Their are a couple of differences.
|
|
| 57 |
= Q: If I disable this plugin, will I be able to update my plugins, themes, and core again? =
|
| 58 |
A: Yes, this plugin just stops (or disables) the update, it does not delete them.
|
| 59 |
|
| 60 |
-
|
| 61 |
-
|
| 62 |
== ==
|
| 63 |
|
| 64 |
-
|
| 65 |
|
| 66 |
|
| 67 |
It is very important to keep your WordPress plugins, core, and themes up to date.
|
| 68 |
-
If you use this plugin, make sure your plugins are not harming your website
|
| 69 |
|
| 70 |
= No Downloads For Some Versions =
|
| 71 |
If you were wondering why their are no downloads available for some of our this plugins versions, its because the versions are full of bugs.
|
|
@@ -121,12 +119,17 @@ Their are three way to install Disable All Updates.
|
|
| 121 |
|
| 122 |
|
| 123 |
= Versions Available for Downloading =
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 124 |
= 2.1.0 =
|
| 125 |
* Settings Page Updated (under Dashboard and with more settings)
|
| 126 |
* Fixed Disable Plugin, Theme, and Core Disabling Problem
|
| 127 |
* Updated Readme.txt
|
| 128 |
* Removed Hide Updates Notice Setting
|
| 129 |
-
* Remove Admin Notice (Thanks conservativeread!)
|
| 130 |
|
| 131 |
= 2.0.0 =
|
| 132 |
* Settings Page Added
|
| 8 |
Stable tag: trunk
|
| 9 |
|
| 10 |
|
| 11 |
+
A simple WordPress plugin that disables all the updating of plugins, themes, and the WordPress core. You can also just disable one or two of them using the settings.
|
| 12 |
|
| 13 |
|
| 14 |
|
| 20 |
|
| 21 |
This plugin is simple and easy.
|
| 22 |
|
| 23 |
+
`Their are settings for this plugin under the Dashboard.`
|
| 24 |
|
| 25 |
+
This plugin is better then any other plugin in its class because it:
|
| 26 |
+
`<ol>
|
| 27 |
<li>Turns of WordPress automatic updates</li>
|
| 28 |
<li>It disables e-mail noticfactions for updates</li>
|
| 29 |
+
<li>It has settings to disable one or two of them.</li>
|
| 30 |
+
</ol> `
|
| 31 |
|
| 32 |
And More...
|
| 33 |
|
| 34 |
= Video Tutorial =
|
| 35 |
+
[youtube http://www.youtube.com/embed/ESOSt_ebiwM]
|
| 36 |
|
| 37 |
+
`= Just Won't to Disable One or Two? =
|
| 38 |
+
With the new settings form under dashboard, it easy. Just check the things you won't disabled.`
|
| 39 |
|
| 40 |
= Check Out Our Newest Plugin! =
|
| 41 |
<li><a href="http://wordpress.org/plugins/remove-the-updates-submenu/">Remove the Updates Submenu</a></li>
|
| 42 |
It removes the updates submenu.
|
| 43 |
|
| 44 |
== Frequently Asked Questions ==
|
| 45 |
+
|
| 46 |
= Q: Is their a way to disable only one or two of these? =
|
| 47 |
A: Yes, in the settings you can disable one, two, or three.
|
| 48 |
|
|
|
|
| 49 |
= Q: How is this plugin diferent from the other disable updates plugins? =
|
| 50 |
A: Their are a couple of differences.
|
| 51 |
<ol>
|
| 57 |
= Q: If I disable this plugin, will I be able to update my plugins, themes, and core again? =
|
| 58 |
A: Yes, this plugin just stops (or disables) the update, it does not delete them.
|
| 59 |
|
|
|
|
|
|
|
| 60 |
== ==
|
| 61 |
|
| 62 |
+
`= Please note!!! =
|
| 63 |
|
| 64 |
|
| 65 |
It is very important to keep your WordPress plugins, core, and themes up to date.
|
| 66 |
+
If you use this plugin, make sure your plugins are not harming your website.`
|
| 67 |
|
| 68 |
= No Downloads For Some Versions =
|
| 69 |
If you were wondering why their are no downloads available for some of our this plugins versions, its because the versions are full of bugs.
|
| 119 |
|
| 120 |
|
| 121 |
= Versions Available for Downloading =
|
| 122 |
+
= 2.2.0 =
|
| 123 |
+
* Settings Page Updated (Added Tutorial to Settings Page)
|
| 124 |
+
* Video Tutorial Updated
|
| 125 |
+
* New Settings Page Name (Disable Updates)
|
| 126 |
+
|
| 127 |
= 2.1.0 =
|
| 128 |
* Settings Page Updated (under Dashboard and with more settings)
|
| 129 |
* Fixed Disable Plugin, Theme, and Core Disabling Problem
|
| 130 |
* Updated Readme.txt
|
| 131 |
* Removed Hide Updates Notice Setting
|
| 132 |
+
* Remove Admin Notice <strong>(Thanks conservativeread!)</strong>
|
| 133 |
|
| 134 |
= 2.0.0 =
|
| 135 |
* Settings Page Added
|
