Easy Updates Manager - Version 2.5.1

Version Description

Download this release

Release Info

Developer kidsguide
Plugin Icon 128x128 Easy Updates Manager
Version 2.5.1
Comparing to
See all releases

Code changes from version 2.5.0 to 2.5.1

Files changed (2) hide show
  1. Function.php +10 -10
  2. readme.txt +32 -24
Function.php CHANGED
@@ -2,16 +2,16 @@
2
  /**
3
  * @package Disable Updates Manager
4
  * @author Websiteguy
5
- * @version 2.5.0
6
  */
7
  /*
8
  Plugin Name: Disable Updates Manager
9
  Plugin URI: http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/
10
- Version: 2.5.0
11
- Description: Now you can chose which type of update you won't to disable! Just go to the settings page under dashboard.
12
  Author: Websiteguy
13
  Author URI: http://profiles.wordpress.org/kidsguide/
14
- Compatible with WordPress 2.3+.
15
  */
16
  /*
17
  @Copyright 2014 Websiteguy (email : mpsparrow@cogeco.ca)
@@ -39,7 +39,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
39
 
40
  function Disable_Updates() {
41
 
42
- // Coming Soon: Add translations
43
  if (function_exists('load_plugin_textdomain'))
44
  load_plugin_textdomain( 'disable-updates-manager', false, dirname( plugin_basename( __FILE__ ) ) . '/lang/');
45
 
@@ -272,12 +272,12 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
272
  // Settings Page (Under Dashboard)
273
  function display_page() {
274
 
275
- // Check if user can access to the plugin
276
  if (!current_user_can('update_core'))
277
  wp_die( __('You do not have permissions to access this page.') );
278
 
279
  ?>
280
-
281
  <div class="wrap">
282
  <h2><?php _e('Disable Updates Manager Settings','disable-updates-manager'); ?></h2>
283
 
@@ -344,7 +344,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
344
  <td>
345
  <fieldset>
346
  <p class="submit">
347
- <input type="submit" class="button-primary" value="<?php _e('Save') ?>" />
348
  </p>
349
  </fieldset>
350
  </td>
@@ -362,8 +362,8 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
362
 
363
  // Start this plugin once all other plugins are fully loaded
364
  global $Disable_Updates; $Disable_Updates = new Disable_Updates();
365
-
366
- // Plugin Page Links Function
367
  add_filter( 'plugin_row_meta', 'thsp_plugin_meta_links', 10, 2 );
368
 
369
  function thsp_plugin_meta_links( $links, $file ) {
2
  /**
3
  * @package Disable Updates Manager
4
  * @author Websiteguy
5
+ * @version 2.5.1
6
  */
7
  /*
8
  Plugin Name: Disable Updates Manager
9
  Plugin URI: http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/
10
+ Version: 2.5.1
11
+ Description: Pick which type of updates you would like to disable. Just use are new settings forum.
12
  Author: Websiteguy
13
  Author URI: http://profiles.wordpress.org/kidsguide/
14
+ Tested up to WordPress 3.8.
15
  */
16
  /*
17
  @Copyright 2014 Websiteguy (email : mpsparrow@cogeco.ca)
39
 
40
  function Disable_Updates() {
41
 
42
+ // Add translations
43
  if (function_exists('load_plugin_textdomain'))
44
  load_plugin_textdomain( 'disable-updates-manager', false, dirname( plugin_basename( __FILE__ ) ) . '/lang/');
45
 
272
  // Settings Page (Under Dashboard)
273
  function display_page() {
274
 
275
+ // Don't Allow Users to View Settings
276
  if (!current_user_can('update_core'))
277
  wp_die( __('You do not have permissions to access this page.') );
278
 
279
  ?>
280
+
281
  <div class="wrap">
282
  <h2><?php _e('Disable Updates Manager Settings','disable-updates-manager'); ?></h2>
283
 
344
  <td>
345
  <fieldset>
346
  <p class="submit">
347
+ <input type="submit" class="button-primary" value="<?php _e('Update Settings') ?>" />
348
  </p>
349
  </fieldset>
350
  </td>
362
 
363
  // Start this plugin once all other plugins are fully loaded
364
  global $Disable_Updates; $Disable_Updates = new Disable_Updates();
365
+
366
+ // Plugin Page Link Function
367
  add_filter( 'plugin_row_meta', 'thsp_plugin_meta_links', 10, 2 );
368
 
369
  function thsp_plugin_meta_links( $links, $file ) {
readme.txt CHANGED
@@ -1,12 +1,12 @@
1
- === Disable Updates Manager ===
2
-
3
  Contributors: kidsguide
4
  Tags: Disable All Updates, Disable Plugin Updates, Disable Theme Updates, Disable WordPress Core Updates, Disable Updates Settings, Disable Updates, Disable All WordPress Updates, Disable All WordPress Updates Settings, Disable Updates Manager, Disable All Updates Manager
5
- Requires at least: 2.4
6
  Tested up to: 3.8
7
  Stable tag: trunk
8
 
9
- Now you can chose which type of update you won't to disable! Just go to the settings page under dashboard.
10
 
11
  == Description ==
12
  With the newest versions of Disable Updates Manager (formerly called "Disable All Updates') you can chose the type of update you would like to disable.
@@ -17,15 +17,14 @@ With the newest versions of Disable Updates Manager (formerly called "Disable Al
17
  <li>WordPress Plugin Updates</li>
18
  <li>WordPress Theme Updates</li>
19
  </ol>
20
-
21
 
22
  = Features =
23
  <ol>
24
- <li>Has a simple settings page to disable all types of updates.</li>
25
- <li>Has extra settings to remove the "updates" page, and disable the updates files.</li>
26
  <li>Disables WordPress automatic updates.</li>
27
  <li>Disables update e-mails</li>
28
- <li>Has a link to Support, FAQ, and the Tutorial in the plugin page</li>
29
  <li>Translation</li>
30
  </ol>
31
 
@@ -37,9 +36,8 @@ With the new settings form under dashboard, it easy.
37
  Just check the things you won't disabled.
38
 
39
  == Frequently Asked Questions ==
40
-
41
  = Q: Is their a way to disable only one or two of these? =
42
- A: Yes, in the settings you can disable one, two, or three.
43
 
44
  = Q: How is this plugin different from the other disable updates plugins? =
45
  A: Their are a couple of differences.
@@ -60,7 +58,7 @@ If you use this plugin, make sure your plugins are not harming your website.`
60
 
61
  = No Downloads For Some Versions =
62
  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.
63
-
64
  == Screenshots ==
65
  1. Before View Core (Dashboard)
66
  4. Before View Plugin (Plugin Page)
@@ -70,9 +68,6 @@ If you were wondering why their are no downloads available for some of our this
70
  6. Settings Page (Disable All Updates)
71
 
72
  == Installation ==
73
-
74
-
75
-
76
  Their are three way to install Disable All Updates.
77
 
78
  <strong>1)</strong> The WordPress dashboard way.
@@ -106,13 +101,32 @@ Their are three way to install Disable All Updates.
106
  </ol>
107
 
108
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
 
 
109
 
110
 
111
 
112
- = Versions Available for Downloading =
113
 
114
- = 2.5.0 =
 
 
115
 
 
 
 
 
116
  = Settings in Dashboard =
117
  * Added Postboxes
118
  * Remove Delete Files Setting
@@ -124,19 +138,14 @@ Their are three way to install Disable All Updates.
124
  * Delete Translation .mo File
125
 
126
  = Readme.txt =
127
- * Readme.txt Updated
128
 
129
  = 2.4.0 =
130
-
131
  * Plugin Name Changed (Disable Updates Manager)
132
-
133
  * Tags Updated (Make it easier to find this plugin)
134
-
135
  * Fixed Some HTML
136
-
137
  * Added Translation (Test)
138
-
139
-
140
  = 2.3.0 =
141
  * Remove File Setting Added
142
  * Fixed up Settings Page
@@ -164,7 +173,6 @@ Their are three way to install Disable All Updates.
164
  * Updated Screenshots
165
  * Updated Readme.txt
166
 
167
-
168
  = 1.9.0 =
169
  * Admin Notice Added
170
  * FAQ Error Fixed
1
+ === Disable Updates Manager ===
2
+
3
  Contributors: kidsguide
4
  Tags: Disable All Updates, Disable Plugin Updates, Disable Theme Updates, Disable WordPress Core Updates, Disable Updates Settings, Disable Updates, Disable All WordPress Updates, Disable All WordPress Updates Settings, Disable Updates Manager, Disable All Updates Manager
5
+ Requires at least: 3.0
6
  Tested up to: 3.8
7
  Stable tag: trunk
8
 
9
+ Pick which type of updates you would like to disable. Just use are new settings forum.
10
 
11
  == Description ==
12
  With the newest versions of Disable Updates Manager (formerly called "Disable All Updates') you can chose the type of update you would like to disable.
17
  <li>WordPress Plugin Updates</li>
18
  <li>WordPress Theme Updates</li>
19
  </ol>
 
20
 
21
  = Features =
22
  <ol>
23
+ <li>Has a simple settings page to disable any type of updates.</li>
24
+ <li>Has extra settings to remove the "updates" page, and disable all the updates (like the passed versions of this plugin).</li>
25
  <li>Disables WordPress automatic updates.</li>
26
  <li>Disables update e-mails</li>
27
+ <li>Has a link to Support, FAQ, Settings, and the Tutorial in the plugin page</li>
28
  <li>Translation</li>
29
  </ol>
30
 
36
  Just check the things you won't disabled.
37
 
38
  == Frequently Asked Questions ==
 
39
  = Q: Is their a way to disable only one or two of these? =
40
+ A: Yes, in the settings you can disable one, two, or all of them.
41
 
42
  = Q: How is this plugin different from the other disable updates plugins? =
43
  A: Their are a couple of differences.
58
 
59
  = No Downloads For Some Versions =
60
  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.
61
+
62
  == Screenshots ==
63
  1. Before View Core (Dashboard)
64
  4. Before View Plugin (Plugin Page)
68
  6. Settings Page (Disable All Updates)
69
 
70
  == Installation ==
 
 
 
71
  Their are three way to install Disable All Updates.
72
 
73
  <strong>1)</strong> The WordPress dashboard way.
101
  </ol>
102
 
103
  == Changelog ==
104
+ = Versions Available for Downloading =
105
+
106
+
107
+ = 2.5.1 =
108
+ = Settings in Dashboard =
109
+
110
+ * Changed Save Button Text
111
+
112
+
113
+
114
+ = HTML =
115
+
116
+ * HTML Notes Updated
117
 
118
 
119
 
120
+ = Readme =
121
 
122
+ * Fixed Changelog Errors
123
+
124
+ * Updated Description
125
 
126
+
127
+
128
+
129
+ = 2.5.0 =
130
  = Settings in Dashboard =
131
  * Added Postboxes
132
  * Remove Delete Files Setting
138
  * Delete Translation .mo File
139
 
140
  = Readme.txt =
141
+ * Readme.txt Error Fixed
142
 
143
  = 2.4.0 =
 
144
  * Plugin Name Changed (Disable Updates Manager)
 
145
  * Tags Updated (Make it easier to find this plugin)
 
146
  * Fixed Some HTML
 
147
  * Added Translation (Test)
148
+
 
149
  = 2.3.0 =
150
  * Remove File Setting Added
151
  * Fixed up Settings Page
173
  * Updated Screenshots
174
  * Updated Readme.txt
175
 
 
176
  = 1.9.0 =
177
  * Admin Notice Added
178
  * FAQ Error Fixed