Easy Updates Manager - Version 4.0

Version Description

Download this release

Release Info

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

Code changes from version 3.6.0 to 4.0

Function.php CHANGED
@@ -1,592 +1,623 @@
1
- <?php
2
- /**
3
- * @package Disable Updates Manager
4
- * @author Websiteguy
5
- * @version 3.6.0
6
- */
7
- /*
8
- Plugin Name: Disable Updates Manager
9
- Plugin URI: http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/
10
- Version: 3.6.0
11
- Description: Pick which type of updates you would like to disable. Just use the settings.
12
- Author: Websiteguy
13
- Author URI: http://profiles.wordpress.org/kidsguide/
14
- License: GPL2
15
- Tested up to WordPress 3.8.1
16
- */
17
- /*
18
- License:
19
-
20
- @Copyright 2013 - 2014 Websiteguy (email : mpsparrow@cogeco.ca)
21
-
22
- This program is free software; you can redistribute it and/or modify
23
- it under the terms of the GNU General Public License, version 2, as
24
- published by the Free Software Foundation.
25
-
26
- This program is distributed in the hope that it will be useful,
27
- but WITHOUT ANY WARRANTY; without even the implied warranty of
28
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
29
- GNU General Public License for more details.
30
-
31
- You should have received a copy of the GNU General Public License
32
- along with this program; if not, write to the Free Software
33
- Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
34
- */
35
-
36
- // Define version.
37
-
38
- define("DISABLEUPDATESMANAGERVERSION", "3.6.0");
39
-
40
- class Disable_Updates {
41
- // Set status in array
42
- private $status = array();
43
-
44
- // Set checkboxes in array
45
- private $checkboxes = array();
46
-
47
- function Disable_Updates() {
48
-
49
- // Add menu page.
50
- add_action('admin_menu', array(&$this, 'add_submenu'));
51
-
52
- // Settings API.
53
- add_action('admin_init', array(&$this, 'register_setting'));
54
-
55
-
56
- // load the values recorded.
57
- $this->load_disable_updates();
58
- }
59
-
60
-
61
-
62
- // Register settings.
63
- function register_setting() {
64
- register_setting('_disable_updates', '_disable_updates', array(&$this, 'validate_settings'));
65
- }
66
-
67
- function validate_settings( $input ) {
68
- $options = get_option( '_disable_updates' );
69
-
70
- foreach ( $this->checkboxes as $id ) {
71
- if ( isset( $options[$id] ) && !isset( $input[$id] ) )
72
- unset( $options[$id] );
73
- }
74
-
75
- return $input;
76
- }
77
-
78
- function add_submenu() {
79
- // Add submenu to "Dashboard" menu.
80
- add_submenu_page( 'index.php', 'Disable Updates', __('Disable Updates','disable-updates-manager'), 'administrator', __FILE__, array(&$this, 'display_page') );
81
- }
82
-
83
- // Functions for plugin (Change in settings)
84
- function load_disable_updates() {
85
- $this->status = get_option('_disable_updates');
86
-
87
- if( !$this->status ) return;
88
-
89
- foreach( $this->status as $id => $value ) {
90
-
91
- switch( $id ) {
92
-
93
- // Disable Plugin Updates
94
- case 'plugin' :
95
-
96
- // Disable Plugin Updates Code
97
- remove_action( 'load-update-core.php', 'wp_update_plugins' );
98
- add_filter( 'pre_site_transient_update_plugins', create_function( '$a', "return null;" ) );
99
-
100
- // Disable Plugin Update E-mails (only works for some plugins)
101
- apply_filters( 'auto_plugin_update_send_email', false, $type, $plugin_update, $result );
102
-
103
- break;
104
-
105
- // Disable Theme Updates
106
- case 'theme' :
107
-
108
- // Disable Theme Updates Code
109
- remove_action( 'load-update-core.php', 'wp_update_themes' );
110
- add_filter( 'pre_site_transient_update_themes', create_function( '$a', "return null;" ) );
111
-
112
- // Disable Theme Update E-mails (only works for some plugins)
113
- apply_filters( 'auto_theme_update_send_email', false, $type, $theme_update, $result );
114
-
115
- break;
116
-
117
- // Disable WordPress Core Updates
118
- case 'core' :
119
-
120
- // Disable WordPress Core Updates Code
121
- remove_action( 'load-update-core.php', 'wp_update_core' );
122
- add_filter( 'pre_site_transient_update_core', create_function( '$a', "return null;" ) );
123
-
124
- // Disable WordPress Core Update E-mails (only works for some plugins)
125
- apply_filters( 'auto_core_update_send_email', false, $type, $core_update, $result );
126
-
127
- break;
128
-
129
- // Remove the Dashboard Updates Menu
130
- case 'page' :
131
-
132
- // Remove the Dashboard Updates Menu Code
133
- add_action( 'admin_init', 'wpse_38111' );
134
- function wpse_38111() {
135
- remove_submenu_page( 'index.php', 'update-core.php' );
136
- }
137
-
138
- break;
139
-
140
- // Disable All Updates
141
- case 'all' :
142
-
143
- // Disable All Updates
144
-
145
- // Disable Plugin Updates Only
146
-
147
- remove_action( 'load-update-core.php', 'wp_update_plugins' );
148
- add_filter( 'pre_site_transient_update_plugins', create_function( '$a', "return null;" ) );
149
-
150
- // Disable Theme Updates Only
151
-
152
- remove_action( 'load-update-core.php', 'wp_update_themes' );
153
- add_filter( 'pre_site_transient_update_themes', create_function( '$a', "return null;" ) );
154
-
155
- // Disable Core Updates Only
156
-
157
- remove_action( 'load-update-core.php', 'wp_update_core' );
158
- add_filter( 'pre_site_transient_update_core', create_function( '$a', "return null;" ) );
159
-
160
- // Hide Update Notices in Admin Dashboard
161
-
162
- add_action('admin_menu','hide_admin_notices');
163
- function hide_admin_notices() {
164
- remove_action( 'admin_notices', 'update_nag', 3 );
165
- }
166
-
167
- // Remove Files From WordPress
168
-
169
- function admin_init() {
170
- if ( !function_exists("remove_action") ) return;
171
-
172
- // Disable Plugin Updates Only
173
-
174
- remove_action( 'load-plugins.php', 'wp_update_plugins' );
175
- remove_action( 'load-update.php', 'wp_update_plugins' );
176
- remove_action( 'admin_init', '_maybe_update_plugins' );
177
- remove_action( 'wp_update_plugins', 'wp_update_plugins' );
178
- wp_clear_scheduled_hook( 'wp_update_plugins' );
179
-
180
- remove_action( 'load-update-core.php', 'wp_update_plugins' );
181
- wp_clear_scheduled_hook( 'wp_update_plugins' );
182
-
183
- // Disable Theme Updates Only
184
-
185
- remove_action( 'load-themes.php', 'wp_update_themes' );
186
- remove_action( 'load-update.php', 'wp_update_themes' );
187
- remove_action( 'admin_init', '_maybe_update_themes' );
188
- remove_action( 'wp_update_themes', 'wp_update_themes' );
189
- wp_clear_scheduled_hook( 'wp_update_themes' );
190
-
191
- remove_action( 'load-update-core.php', 'wp_update_themes' );
192
- wp_clear_scheduled_hook( 'wp_update_themes' );
193
-
194
- // Disable Core Updates Only
195
-
196
- remove_action( 'wp_version_check', 'wp_version_check' );
197
- remove_action( 'admin_init', '_maybe_update_core' );
198
- wp_clear_scheduled_hook( 'wp_version_check' );
199
-
200
- wp_clear_scheduled_hook( 'wp_version_check' );
201
- }
202
-
203
- // Remove Updates Again (different method)
204
-
205
- add_filter( 'pre_site_transient_update_plugins', create_function( '$a', "return null;" ) );
206
-
207
- add_action( 'init', create_function( '$a', "remove_action( 'init', 'wp_version_check' );" ), 2 );
208
- add_filter( 'pre_option_update_core', create_function( '$a', "return null;" ) );
209
-
210
- remove_action( 'wp_version_check', 'wp_version_check' );
211
- remove_action( 'admin_init', '_maybe_update_core' );
212
- add_filter( 'pre_transient_update_core', create_function( '$a', "return null;" ) );
213
-
214
- add_filter( 'pre_site_transient_update_core', create_function( '$a', "return null;" ) );
215
-
216
- remove_action( 'load-themes.php', 'wp_update_themes' );
217
- remove_action( 'load-update.php', 'wp_update_themes' );
218
- remove_action( 'admin_init', '_maybe_update_themes' );
219
- remove_action( 'wp_update_themes', 'wp_update_themes' );
220
- add_filter( 'pre_transient_update_themes', create_function( '$a', "return null;" ) );
221
-
222
- remove_action( 'load-update-core.php', 'wp_update_themes' );
223
- add_filter( 'pre_site_transient_update_themes', create_function( '$a', "return null;" ) );
224
-
225
- add_action( 'admin_menu', create_function( '$a', "remove_action( 'load-plugins.php', 'wp_update_plugins' );") );
226
-
227
- add_action( 'admin_init', create_function( '$a', "remove_action( 'admin_init', 'wp_update_plugins' );"), 2 );
228
- add_action( 'init', create_function( '$a', "remove_action( 'init', 'wp_update_plugins' );"), 2 );
229
- add_filter( 'pre_option_update_plugins', create_function( '$a', "return null;" ) );
230
-
231
- remove_action( 'load-plugins.php', 'wp_update_plugins' );
232
- remove_action( 'load-update.php', 'wp_update_plugins' );
233
- remove_action( 'admin_init', '_maybe_update_plugins' );
234
- remove_action( 'wp_update_plugins', 'wp_update_plugins' );
235
- add_filter( 'pre_transient_update_plugins', create_function( '$a', "return null;" ) );
236
-
237
- remove_action( 'load-update-core.php', 'wp_update_plugins' );
238
- add_filter( 'pre_site_transient_update_plugins', create_function( '$a', "return null;" ) );
239
-
240
-
241
- // Disable Debug E-mails
242
- add_filter( 'automatic_updates_send_debug_email ', '__return_false', 1 );
243
-
244
- // Disable WordPress Automatic Updates
245
- define( 'Automatic_Updater_Disabled', true );
246
- define('WP_AUTO_UPDATE_CORE', false);
247
-
248
- // Disable Updates E-mails
249
-
250
- // Core E-mails Only
251
- apply_filters( 'auto_core_update_send_email', false, $type, $core_update, $result );
252
-
253
- // Plugin E-mails Only
254
- apply_filters( 'auto_plugin_update_send_email', false, $type, $plugin_update, $result );
255
-
256
- // Theme E-mails Only
257
- apply_filters( 'auto_theme_update_send_email', false, $type, $theme_update, $result );
258
-
259
-
260
- break;
261
-
262
- // Remove WordPress Version Number
263
- case 'wpv' :
264
-
265
- function change_footer_admin () {return '&nbsp;';}
266
- add_filter('admin_footer_text', 'change_footer_admin', 9999);
267
- function change_footer_version() {return ' ';}
268
- add_filter( 'update_footer', 'change_footer_version', 9999);
269
-
270
- break;
271
-
272
- case 'ip' :
273
- if(defined('disable_updates_loaded')) {
274
- return;
275
- }
276
- define('disable_updates_loaded', 1);
277
-
278
- add_action('init','disable_updates_get');
279
- add_action('init','disable_updates_addFilters');
280
-
281
- add_filter("plugin_row_meta", 'disable_updates_pluginLinks', 10, 2);
282
- add_filter('site_transient_update_plugins', 'disable_updates_blockUpdateNotifications');
283
-
284
- function disable_updates_addFilters() {
285
- if(!current_user_can('update_plugins')) {
286
- return;
287
- }
288
-
289
- $plugins = get_site_transient('update_plugins');
290
- $to_block = get_option('disable_updates_blocked');
291
-
292
- if(isset($plugins->response)) {
293
- // loop through all of the plugins with updates available and attach the appropriate filter
294
- foreach($plugins->response as $filename => $plugin) {
295
- // check that the version is the version we want to block updates to
296
- $s = 'after_plugin_row_' . $filename;
297
- //in_plugin_update_message-
298
- add_action($s, 'disable_updates_blockLink', -1, 1);
299
- }
300
- }
301
- if(isset($plugins->disable_updates)) {
302
- foreach($plugins->disable_updates as $filename => $plugin) {
303
- // check that the version is the version we want to block updates to
304
- $s = 'after_plugin_row_' . $filename;
305
- add_action($s, 'disable_updates_unblockLink', 2, 1);
306
- }
307
- }
308
- }
309
-
310
- function disable_updates_get() {
311
-
312
- if(!current_user_can('update_plugins')) {
313
- return;
314
- }
315
-
316
- // see if there are actions to process
317
- if(!isset($_GET['disable_updates']) || !isset($_GET['_wpnonce'])) {
318
- return;
319
- }
320
-
321
- if(!wp_verify_nonce($_GET['_wpnonce'], 'disable_updates')) {
322
- return;
323
- }
324
-
325
- $blocked = get_option('disable_updates_blocked');
326
- $plugins = get_site_transient('update_plugins');
327
-
328
- // block action
329
- if(isset($_GET['block']) && isset($plugins->response) && isset($plugins->response[$_GET['block']])) {
330
- $p = $plugins->response[$_GET['block']];
331
- $blocked[$_GET['block']] = array('slug' => $p->slug, 'new_version' => $p->new_version);
332
- }
333
-
334
- if(isset($_GET['unblock'])) {
335
- unset($blocked[$_GET['unblock']]);
336
-
337
- }
338
-
339
- update_option('disable_updates_blocked', $blocked);
340
-
341
- }
342
-
343
- function disable_updates_blockUpdateNotifications($plugins) {
344
-
345
- if(!isset($plugins->response) || count($plugins->response) == 0) {
346
- return $plugins;
347
- }
348
-
349
- $to_block = (array)get_option('disable_updates_blocked');
350
-
351
- foreach($to_block as $filename => $plugin) {
352
-
353
- if(isset($plugins->response[$filename])
354
- && $plugins->response[$filename]->new_version == $plugin['new_version']) {
355
-
356
- $plugins->disable_updates[$filename] = $plugins->response[$filename];
357
- unset($plugins->response[$filename]);
358
- }
359
- }
360
- return $plugins;
361
- }
362
-
363
- function disable_updates_unblockLink($filename) {
364
- disable_updates_linkStart();
365
- echo 'Updates for this plugin are blocked. <a href="plugins.php?_wpnonce=' . wp_create_nonce('disable_updates') . '&disable_updates&unblock=' . $filename . '">Unblock updates</a>.</div></td></tr>';
366
- }
367
-
368
- function disable_updates_blockLink($filename) {
369
- disable_updates_linkStart();
370
- echo ' <a href="plugins.php?_wpnonce=' . wp_create_nonce('disable_updates') . '&disable_updates&block=' . $filename . '">Block updates for this plugin</a>.</div></td></tr>';
371
- }
372
-
373
- function disable_updates_linkStart() {
374
-
375
- // wp_plugin_update_row
376
- // wp-admin/includes/update.php
377
-
378
- $wp_list_table = _get_list_table('WP_Plugins_List_Table');
379
- echo '<tr class="plugin-update-tr"><td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange"><div class="update-message">';
380
- }
381
-
382
- function disable_updates_pluginLinks( $links, $file ) {
383
- $plugin = plugin_basename(__FILE__);
384
- if($file == $plugin) {
385
- $links[] = '<a target="_BLANK" href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=LC5UR6667DLXU"></a>';
386
- }
387
- return $links;
388
- }
389
-
390
- if(!function_exists('printr')) {
391
- function printr($txt) {
392
- echo '<pre>'; print_r($txt); echo '</pre>';
393
- }
394
- }
395
- break;
396
-
397
- // Disable automatic background updates.
398
- case 'abup' :
399
- wp_clear_scheduled_hook( 'wp_maybe_auto_update' );
400
- break;
401
-
402
- }
403
- }
404
- }
405
-
406
- // Settings page (under dashboard).
407
- function display_page() {
408
-
409
- // Don't Allow Users to View Settings
410
- if (!current_user_can('update_core'))
411
- wp_die( __('You do not have permissions to access this page.') );
412
-
413
- ?>
414
-
415
- <div class="wrap">
416
- <span style="display:block; padding-left: 5px; padding-bottom: 5px">
417
- <h2><?php _e('Disable Updates Manager Settings','disable-updates-manager'); ?></h2>
418
- </span>
419
-
420
- <form method="post" action="options.php">
421
-
422
- <?php settings_fields('_disable_updates'); ?>
423
-
424
- <table class="form-table">
425
- <tr>
426
- <div class="error" style="width: 780px"><p><strong>Please Note! - </strong>If either your WordPress core, theme, or plugins get too out of date, you may run into compatibility problems.</p></div>
427
- </table>
428
- <table class="wp-list-table widefat fixed bookmarks" style="width: 590px; border-radius: 4px;">
429
- <thead>
430
- <tr>
431
- <th>Disable Updates</th>
432
- </tr>
433
- </thead>
434
- <tbody>
435
- <tr>
436
- <td>
437
- <div class="showonhover">
438
- <label for="all_notify">
439
- <input type="checkbox" <?php checked(1, (int)$this->status['all'], true); ?> value="1" id="all_notify" name="_disable_updates[all]"> <?php _e('Disable All Updates', 'disable-updates-manager') ?>
440
- </label>
441
- <span>
442
- <a href="#" class="viewdescription">?</a>
443
- <span class="hovertext">Just disables the three updates, nothing else.</span>
444
- </span>
445
- </div>
446
- </span>
447
- <span style="padding-left: 12px; display:block">
448
- <label for="plugins_notify">
449
- <input type="checkbox" <?php checked(1, (int)$this->status['plugin'], true); ?> value="1" id="plugins_notify" name="_disable_updates[plugin]"> <?php _e('Disable Plugin Updates', 'disable-updates-manager') ?>
450
- </label>
451
- <br>
452
- <label for="themes_notify">
453
- <input type="checkbox" <?php checked(1, (int)$this->status['theme'], true); ?> value="1" id="themes_notify" name="_disable_updates[theme]"> <?php _e('Disable Theme Updates', 'disable-updates-manager') ?>
454
- </label>
455
- <br>
456
- <label for="core_notify">
457
- <input type="checkbox" <?php checked(1, (int)$this->status['core'], true); ?> value="1" id="core_notify" name="_disable_updates[core]"> <?php _e('Disable WordPress Core Update', 'disable-updates-manager') ?>
458
- </label>
459
- </span>
460
- </td>
461
- </tr>
462
- </tbody>
463
- </table>
464
- <br>
465
-
466
- <table class="wp-list-table widefat fixed bookmarks" style="width: 590px; border-radius: 4px;">
467
- <thead>
468
- <tr>
469
- <th>Disable Plugins Individually</th>
470
- </tr>
471
- </thead>
472
- <tbody>
473
- <tr>
474
- <td>
475
- <div class="showonhover">
476
- <label for="ip_notify">
477
- <input type="checkbox" <?php checked(1, (int)$this->status['ip'], true); ?> value="1" id="ip_notify" name="_disable_updates[ip]"> <?php _e('Disable Plugins Individually', 'disable-updates-manager') ?>
478
- </label>
479
- <span>
480
- <a href="#" class="viewdescription">?</a>
481
- <span class="hovertext">Go to the "Plugins" section in your dashboard to disable.</span>
482
- </span>
483
- </div>
484
- </span>
485
- <span style="font-size:8px">New format for this setting coming soon!</span>
486
- </td>
487
- </tr>
488
- </tbody>
489
- </table>
490
- <br>
491
- <table class="wp-list-table widefat fixed bookmarks" style="width: 590px; border-radius: 4px;">
492
- <thead>
493
- <tr>
494
- <th>Other Settings</th>
495
- </tr>
496
- </thead>
497
- <tbody>
498
- <tr>
499
- <td>
500
- <div class="showonhover">
501
- <label for="page_notify">
502
- <input type="checkbox" <?php checked(1, (int)$this->status['page'], true); ?> value="1" id="page_notify" name="_disable_updates[page]"> <?php _e('Remove Updates Page', 'disable-updates-manager') ?>
503
- </label>
504
- <span>
505
- <a href="#" class="viewdescription">?</a>
506
- <span class="hovertext">The one under the dashboard.</span>
507
- </span>
508
- </div>
509
- </span>
510
- <div class="showonhover">
511
- <label for="wpv_notify">
512
- <input type="checkbox" <?php checked(1, (int)$this->status['wpv'], true); ?> value="1" id="wpv_notify" name="_disable_updates[wpv]"> <?php _e('Remove WordPress Core Version', 'disable-updates-manager') ?>
513
- </label>
514
- <span>
515
- <a href="#" class="viewdescription">?</a>
516
- <span class="hovertext">Removes it for all users.</span>
517
- </span>
518
- </div>
519
- </span>
520
- <label for="abup_notify">
521
- <input type="checkbox" <?php checked(1, (int)$this->status['abup'], true); ?> value="1" id="abup_notify" name="_disable_updates[abup]"> <?php _e('Disable Automatic Background Updates', 'disable-updates-manager') ?>
522
- </label>
523
- <br>
524
- </td>
525
- </tr>
526
- </tbody>
527
- </table>
528
- <p class="submit">
529
- <input type="submit" class="button-primary" value="<?php _e('Update Settings') ?>" />
530
- </p>
531
-
532
- <table class="wp-list-table widefat fixed bookmarks" style="width: 200px; border-radius: 4px;">
533
- <tbody>
534
- <tr>
535
- <td>
536
- <p align="center">
537
- <a href="http://wordpress.org/support/plugin/stops-core-theme-and-plugin-updates">Support</a> | <a href="http://www.youtube.com/watch?v=7sMEBGNxhwA">Tutorial</a> | <a href="http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/faq/">FAQ</a>
538
- </p>
539
- </td>
540
- </tr>
541
- </tbody>
542
- </table>
543
- </form>
544
- </div>
545
-
546
- <?php
547
- }
548
- }
549
-
550
- // Start Disable Updates Manager once all other plugins are fully loaded.
551
- global $Disable_Updates; $Disable_Updates = new Disable_Updates();
552
-
553
- // Plugin page link.
554
- add_filter( 'plugin_row_meta', 'thsp_plugin_meta_links', 10, 2 );
555
-
556
- function thsp_plugin_meta_links( $links, $file ) {
557
- $plugin = plugin_basename(__FILE__);
558
-
559
- // Create links.
560
- if ( $file == $plugin ) {
561
- return array_merge(
562
- $links,
563
- array( '<a href="http://www.wordpress.org/support/plugin/stops-core-theme-and-plugin-updates">Support</a>' ),
564
- array( '<a href="http://www.wordpress.org/plugins/stops-core-theme-and-plugin-updates/faq/">FAQ</a>' ),
565
- array( '<a href="http://www.youtube.com/watch?v=7sMEBGNxhwA">Tutorial</a>' )
566
- );
567
- }
568
- return $links;
569
- }
570
-
571
- // Add links.
572
- add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), 'thsp_plugin_action_links' );
573
-
574
- function thsp_plugin_action_links( $links ) {
575
-
576
- return array_merge(
577
- array('settings' => '<a href="' . admin_url( 'index.php?page=stops-core-theme-and-plugin-updates/Function.php' ) . '">' . __( 'Configure', 'ts-fab' ) . '</a>'),
578
- $links);
579
- }
580
-
581
- // Add Files
582
- function css() {
583
- wp_register_style('css', plugins_url('style.css',__FILE__ ));
584
- wp_enqueue_style('css');
585
- }
586
- add_action( 'admin_init','css');
587
-
588
- function php() {
589
- wp_register_style('php', plugins_url('uninstall.php',__FILE__ ));
590
- wp_enqueue_style('php');
591
- }
592
- add_action( 'admin_init','php');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @package Disable Updates Manager
4
+ * @author Websiteguy
5
+ * @version 4.0
6
+ */
7
+ /*
8
+ Plugin Name: Disable Updates Manager
9
+ Plugin URI: http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/
10
+ Version: 4.0
11
+ Description: Pick which type of updates you would like to disable. Just use the settings.
12
+ Author: Websiteguy
13
+ Author URI: http://profiles.wordpress.org/kidsguide/
14
+ License: GPL2
15
+ Text Domain: stops-core-theme-and-plugin-updates
16
+ Domain Path: /lang
17
+ Tested up to WordPress 3.9
18
+ */
19
+ /*
20
+ License:
21
+
22
+ @Copyright 2013 - 2014 Websiteguy (email : mpsparrow@cogeco.ca)
23
+
24
+ This program is free software; you can redistribute it and/or modify
25
+ it under the terms of the GNU General Public License, version 2, as
26
+ published by the Free Software Foundation.
27
+
28
+ This program is distributed in the hope that it will be useful,
29
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
30
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
31
+ GNU General Public License for more details.
32
+
33
+ You should have received a copy of the GNU General Public License
34
+ along with this program; if not, write to the Free Software
35
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
36
+
37
+ or go to the license.txt in the trunk.
38
+ */
39
+
40
+ // Define version.
41
+
42
+ define("DISABLEUPDATESMANAGERVERSION", "4.0");
43
+
44
+ class Disable_Updates {
45
+ // Set status in array
46
+ private $status = array();
47
+
48
+ // Set checkboxes in array
49
+ private $checkboxes = array();
50
+
51
+ function Disable_Updates() {
52
+
53
+ // Add menu page.
54
+ add_action('admin_menu', array(&$this, 'add_submenu'));
55
+
56
+ // Settings API.
57
+ add_action('admin_init', array(&$this, 'register_setting'));
58
+
59
+
60
+ // load the values recorded.
61
+ $this->load_disable_updates();
62
+ }
63
+
64
+ // Register settings.
65
+ function register_setting() {
66
+ register_setting('_disable_updates', '_disable_updates', array(&$this, 'validate_settings'));
67
+ }
68
+
69
+ function validate_settings( $input ) {
70
+ $options = get_option( '_disable_updates' );
71
+
72
+ foreach ( $this->checkboxes as $id ) {
73
+ if ( isset( $options[$id] ) && !isset( $input[$id] ) )
74
+ unset( $options[$id] );
75
+ }
76
+
77
+ return $input;
78
+ }
79
+
80
+ function add_submenu() {
81
+ // Add submenu to "Dashboard" menu.
82
+ add_submenu_page( 'options-general.php', 'Disable Updates Manager', __('Disable Updates Manager','disable-updates-manager'), 'administrator', __FILE__, array(&$this, 'display_page') );
83
+ }
84
+
85
+ // Functions for plugin (Change in settings)
86
+ function load_disable_updates() {
87
+ $this->status = get_option('_disable_updates');
88
+
89
+ if( !$this->status ) return;
90
+
91
+ foreach( $this->status as $id => $value ) {
92
+
93
+ switch( $id ) {
94
+
95
+ // Disable Plugin Updates
96
+ case 'plugin' :
97
+
98
+ // Disable Plugin Updates Code
99
+ remove_action( 'load-update-core.php', 'wp_update_plugins' );
100
+ add_filter( 'pre_site_transient_update_plugins', create_function( '$a', "return null;" ) );
101
+
102
+ // Disable Plugin Update E-mails (only works for some plugins)
103
+ apply_filters( 'auto_plugin_update_send_email', false, $type, $plugin_update, $result );
104
+
105
+ apply_filters('automatic_plugin_updates_send_debug_email', true, $type, $plugin_update, $result );
106
+
107
+ break;
108
+
109
+ // Disable Theme Updates
110
+ case 'theme' :
111
+
112
+ // Disable Theme Updates Code
113
+ remove_action( 'load-update-core.php', 'wp_update_themes' );
114
+ add_filter( 'pre_site_transient_update_themes', create_function( '$a', "return null;" ) );
115
+
116
+ // Disable Theme Update E-mails (only works for some plugins)
117
+ apply_filters( 'auto_theme_update_send_email', false, $type, $theme_update, $result );
118
+
119
+ apply_filters('automatic_theme_updates_send_debug_email', true, $type, $theme_update, $result );
120
+
121
+ break;
122
+
123
+ // Disable WordPress Core Updates
124
+ case 'core' :
125
+
126
+ // Disable WordPress Core Updates Code
127
+ remove_action( 'load-update-core.php', 'wp_update_core' );
128
+ add_filter( 'pre_site_transient_update_core', create_function( '$a', "return null;" ) );
129
+
130
+ // Disable WordPress Core Update E-mails (only works for some plugins)
131
+ apply_filters( 'auto_core_update_send_email', false, $type, $core_update, $result );
132
+
133
+ apply_filters('automatic_core_updates_send_debug_email', true, $type, $core_update, $result );
134
+
135
+ break;
136
+
137
+ // Remove the Dashboard Updates Menu
138
+ case 'page' :
139
+
140
+ // Remove the Dashboard Updates Menu Code
141
+ add_action( 'admin_init', 'wpse_38111' );
142
+ function wpse_38111() {
143
+ remove_submenu_page( 'index.php', 'update-core.php' );
144
+ }
145
+
146
+ break;
147
+
148
+ // Disable All Updates
149
+ case 'all' :
150
+
151
+ // Disable All Updates
152
+
153
+ // Disable Plugin Updates Only
154
+
155
+ remove_action( 'load-update-core.php', 'wp_update_plugins' );
156
+ add_filter( 'pre_site_transient_update_plugins', create_function( '$a', "return null;" ) );
157
+
158
+ // Disable Theme Updates Only
159
+
160
+ remove_action( 'load-update-core.php', 'wp_update_themes' );
161
+ add_filter( 'pre_site_transient_update_themes', create_function( '$a', "return null;" ) );
162
+
163
+ // Disable Core Updates Only
164
+
165
+ remove_action( 'load-update-core.php', 'wp_update_core' );
166
+ add_filter( 'pre_site_transient_update_core', create_function( '$a', "return null;" ) );
167
+
168
+ // Hide Update Notices in Admin Dashboard
169
+
170
+ add_action('admin_menu','hide_admin_notices');
171
+ function hide_admin_notices() {
172
+ remove_action( 'admin_notices', 'update_nag', 3 );
173
+ }
174
+
175
+ // Remove Files From WordPress
176
+
177
+ function admin_init() {
178
+ if ( !function_exists("remove_action") ) return;
179
+
180
+ // Disable Plugin Updates Only
181
+
182
+ remove_action( 'load-plugins.php', 'wp_update_plugins' );
183
+ remove_action( 'load-update.php', 'wp_update_plugins' );
184
+ remove_action( 'admin_init', '_maybe_update_plugins' );
185
+ remove_action( 'wp_update_plugins', 'wp_update_plugins' );
186
+ wp_clear_scheduled_hook( 'wp_update_plugins' );
187
+
188
+ remove_action( 'load-update-core.php', 'wp_update_plugins' );
189
+ wp_clear_scheduled_hook( 'wp_update_plugins' );
190
+
191
+ // Disable Theme Updates Only
192
+
193
+ remove_action( 'load-themes.php', 'wp_update_themes' );
194
+ remove_action( 'load-update.php', 'wp_update_themes' );
195
+ remove_action( 'admin_init', '_maybe_update_themes' );
196
+ remove_action( 'wp_update_themes', 'wp_update_themes' );
197
+ wp_clear_scheduled_hook( 'wp_update_themes' );
198
+
199
+ remove_action( 'load-update-core.php', 'wp_update_themes' );
200
+ wp_clear_scheduled_hook( 'wp_update_themes' );
201
+
202
+ // Disable Core Updates Only
203
+
204
+ remove_action( 'wp_version_check', 'wp_version_check' );
205
+ remove_action( 'admin_init', '_maybe_update_core' );
206
+ wp_clear_scheduled_hook( 'wp_version_check' );
207
+
208
+ wp_clear_scheduled_hook( 'wp_version_check' );
209
+ }
210
+
211
+ // Remove Updates Again (different method)
212
+
213
+ add_filter( 'pre_site_transient_update_plugins', create_function( '$a', "return null;" ) );
214
+
215
+ add_action( 'init', create_function( '$a', "remove_action( 'init', 'wp_version_check' );" ), 2 );
216
+ add_filter( 'pre_option_update_core', create_function( '$a', "return null;" ) );
217
+
218
+ remove_action( 'wp_version_check', 'wp_version_check' );
219
+ remove_action( 'admin_init', '_maybe_update_core' );
220
+ add_filter( 'pre_transient_update_core', create_function( '$a', "return null;" ) );
221
+
222
+ add_filter( 'pre_site_transient_update_core', create_function( '$a', "return null;" ) );
223
+
224
+ remove_action( 'load-themes.php', 'wp_update_themes' );
225
+ remove_action( 'load-update.php', 'wp_update_themes' );
226
+ remove_action( 'admin_init', '_maybe_update_themes' );
227
+ remove_action( 'wp_update_themes', 'wp_update_themes' );
228
+ add_filter( 'pre_transient_update_themes', create_function( '$a', "return null;" ) );
229
+
230
+ remove_action( 'load-update-core.php', 'wp_update_themes' );
231
+ add_filter( 'pre_site_transient_update_themes', create_function( '$a', "return null;" ) );
232
+
233
+ add_action( 'admin_menu', create_function( '$a', "remove_action( 'load-plugins.php', 'wp_update_plugins' );") );
234
+
235
+ add_action( 'admin_init', create_function( '$a', "remove_action( 'admin_init', 'wp_update_plugins' );"), 2 );
236
+ add_action( 'init', create_function( '$a', "remove_action( 'init', 'wp_update_plugins' );"), 2 );
237
+ add_filter( 'pre_option_update_plugins', create_function( '$a', "return null;" ) );
238
+
239
+ remove_action( 'load-plugins.php', 'wp_update_plugins' );
240
+ remove_action( 'load-update.php', 'wp_update_plugins' );
241
+ remove_action( 'admin_init', '_maybe_update_plugins' );
242
+ remove_action( 'wp_update_plugins', 'wp_update_plugins' );
243
+ add_filter( 'pre_transient_update_plugins', create_function( '$a', "return null;" ) );
244
+
245
+ remove_action( 'load-update-core.php', 'wp_update_plugins' );
246
+ add_filter( 'pre_site_transient_update_plugins', create_function( '$a', "return null;" ) );
247
+
248
+
249
+ // Disable Debug E-mails
250
+ add_filter( 'automatic_updates_send_debug_email ', '__return_true', 1 );
251
+
252
+ // Disable WordPress Automatic Updates
253
+ define( 'Automatic_Updater_Disabled', true );
254
+ define('WP_AUTO_UPDATE_CORE', false);
255
+
256
+ // Disable Updates E-mails
257
+
258
+ // Core E-mails Only
259
+ apply_filters( 'auto_core_update_send_email', false, $type, $core_update, $result );
260
+
261
+ apply_filters('automatic_core_updates_send_debug_email', true, $type, $core_update, $result );
262
+
263
+ // Plugin E-mails Only
264
+ apply_filters( 'auto_plugin_update_send_email', false, $type, $plugin_update, $result );
265
+
266
+ apply_filters('automatic_plugin_updates_send_debug_email', true, $type, $plugin_update, $result );
267
+
268
+ // Theme E-mails Only
269
+ apply_filters( 'auto_theme_update_send_email', false, $type, $theme_update, $result );
270
+
271
+ apply_filters('automatic_theme_updates_send_debug_email', true, $type, $theme_update, $result );
272
+
273
+ break;
274
+
275
+ // Remove WordPress Version Number
276
+ case 'wpv' :
277
+
278
+ add_filter( 'update_footer', 'my_footer_version', 11 );
279
+
280
+ function my_footer_version() {
281
+ return '';
282
+ }
283
+
284
+ break;
285
+
286
+ case 'ip' :
287
+ if(defined('disable_updates_loaded')) {
288
+ return;
289
+ }
290
+ define('disable_updates_loaded', 1);
291
+
292
+ add_action('init','disable_updates_get');
293
+ add_action('init','disable_updates_addFilters');
294
+
295
+ add_filter("plugin_row_meta", 'disable_updates_pluginLinks', 10, 2);
296
+ add_filter('site_transient_update_plugins', 'disable_updates_blockUpdateNotifications');
297
+
298
+ function disable_updates_addFilters() {
299
+ if(!current_user_can('update_plugins')) {
300
+ return;
301
+ }
302
+
303
+ $plugins = get_site_transient('update_plugins');
304
+ $to_block = get_option('disable_updates_blocked');
305
+
306
+ if(isset($plugins->response)) {
307
+ // loop through all of the plugins with updates available and attach the appropriate filter
308
+ foreach($plugins->response as $filename => $plugin) {
309
+ // check that the version is the version we want to block updates to
310
+ $s = 'after_plugin_row_' . $filename;
311
+ //in_plugin_update_message-
312
+ add_action($s, 'disable_updates_blockLink', -1, 1);
313
+ }
314
+ }
315
+ if(isset($plugins->disable_updates)) {
316
+ foreach($plugins->disable_updates as $filename => $plugin) {
317
+ // check that the version is the version we want to block updates to
318
+ $s = 'after_plugin_row_' . $filename;
319
+ add_action($s, 'disable_updates_unblockLink', 2, 1);
320
+ }
321
+ }
322
+ }
323
+
324
+ function disable_updates_get() {
325
+
326
+ if(!current_user_can('update_plugins')) {
327
+ return;
328
+ }
329
+
330
+ // see if there are actions to process
331
+ if(!isset($_GET['disable_updates']) || !isset($_GET['_wpnonce'])) {
332
+ return;
333
+ }
334
+
335
+ if(!wp_verify_nonce($_GET['_wpnonce'], 'disable_updates')) {
336
+ return;
337
+ }
338
+
339
+ $blocked = get_option('disable_updates_blocked');
340
+ $plugins = get_site_transient('update_plugins');
341
+
342
+ // block action
343
+ if(isset($_GET['block']) && isset($plugins->response) && isset($plugins->response[$_GET['block']])) {
344
+ $p = $plugins->response[$_GET['block']];
345
+ $blocked[$_GET['block']] = array('slug' => $p->slug, 'new_version' => $p->new_version);
346
+ }
347
+
348
+ if(isset($_GET['unblock'])) {
349
+ unset($blocked[$_GET['unblock']]);
350
+
351
+ }
352
+
353
+ update_option('disable_updates_blocked', $blocked);
354
+
355
+ }
356
+
357
+ function disable_updates_blockUpdateNotifications($plugins) {
358
+
359
+ if(!isset($plugins->response) || count($plugins->response) == 0) {
360
+ return $plugins;
361
+ }
362
+
363
+ $to_block = (array)get_option('disable_updates_blocked');
364
+
365
+ foreach($to_block as $filename => $plugin) {
366
+
367
+ if(isset($plugins->response[$filename])
368
+ && $plugins->response[$filename]->new_version == $plugin['new_version']) {
369
+
370
+ $plugins->disable_updates[$filename] = $plugins->response[$filename];
371
+ unset($plugins->response[$filename]);
372
+ }
373
+ }
374
+ return $plugins;
375
+ }
376
+
377
+ function disable_updates_unblockLink($filename) {
378
+ disable_updates_linkStart();
379
+ echo 'Updates for this plugin are blocked. <a href="plugins.php?_wpnonce=' . wp_create_nonce('disable_updates') . '&disable_updates&unblock=' . $filename . '">Unblock updates</a>.</div></td></tr>';
380
+ }
381
+
382
+ function disable_updates_blockLink($filename) {
383
+ disable_updates_linkStart();
384
+ echo ' <a href="plugins.php?_wpnonce=' . wp_create_nonce('disable_updates') . '&disable_updates&block=' . $filename . '">Block updates for this plugin</a>.</div></td></tr>';
385
+ }
386
+
387
+ function disable_updates_linkStart() {
388
+
389
+ // wp_plugin_update_row
390
+ // wp-admin/includes/update.php
391
+
392
+ $wp_list_table = _get_list_table('WP_Plugins_List_Table');
393
+ echo '<tr class="plugin-update-tr"><td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange"><div class="update-message">';
394
+ }
395
+
396
+ function disable_updates_pluginLinks( $links, $file ) {
397
+ $plugin = plugin_basename(__FILE__);
398
+ if($file == $plugin) {
399
+ $links[] = '<a target="_BLANK" href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=LC5UR6667DLXU"></a>';
400
+ }
401
+ return $links;
402
+ }
403
+
404
+ if(!function_exists('printr')) {
405
+ function printr($txt) {
406
+ echo '<pre>'; print_r($txt); echo '</pre>';
407
+ }
408
+ }
409
+ break;
410
+
411
+ // Disable automatic background updates.
412
+ case 'abup' :
413
+ wp_clear_scheduled_hook( 'wp_maybe_auto_update' );
414
+ break;
415
+
416
+ }
417
+ }
418
+ }
419
+
420
+ // Settings page (under dashboard).
421
+ function display_page() {
422
+
423
+ // Don't Allow Users to View Settings
424
+ if (!current_user_can('update_core'))
425
+ wp_die( __('You do not have permissions to access this page.') );
426
+
427
+ ?>
428
+
429
+ <div class="wrap">
430
+ <span style="display:block; padding-left: 5px; padding-bottom: 5px">
431
+ <h2><?php _e('Disable Updates Manager Settings','disable-updates-manager'); ?></h2>
432
+ </span>
433
+
434
+ <form method="post" action="options.php">
435
+
436
+ <?php settings_fields('_disable_updates'); ?>
437
+
438
+ <table class="form-table">
439
+ <tr>
440
+
441
+ </table>
442
+ <table class="wp-list-table widefat fixed bookmarks" style="width: 590px; border-radius: 4px;">
443
+ <thead>
444
+ <tr>
445
+ <th>Disable Updates</th>
446
+ </tr>
447
+ </thead>
448
+ <tbody>
449
+ <tr>
450
+ <td>
451
+
452
+ <div class="showonhover">
453
+ <label for="all_notify">
454
+ <input type="checkbox" <?php checked(1, (int)$this->status['all'], true); ?> value="1" id="all_notify" name="_disable_updates[all]"> <?php _e('Disable All Updates', 'disable-updates-manager') ?>
455
+ </label>
456
+ <span>
457
+ <a href="#" class="viewdescription">?</a>
458
+ <span class="hovertext">Just disables core, theme, and plugin updates.</span>
459
+ </span>
460
+ </div>
461
+ </span>
462
+ <span style="padding-left: 12px; display:block">
463
+ <label for="plugins_notify">
464
+ <input type="checkbox" <?php checked(1, (int)$this->status['plugin'], true); ?> value="1" id="plugins_notify" name="_disable_updates[plugin]"> <?php _e('Disable Plugin Updates', 'disable-updates-manager') ?>
465
+ </label>
466
+ <br>
467
+ <label for="themes_notify">
468
+ <input type="checkbox" <?php checked(1, (int)$this->status['theme'], true); ?> value="1" id="themes_notify" name="_disable_updates[theme]"> <?php _e('Disable Theme Updates', 'disable-updates-manager') ?>
469
+ </label>
470
+ <br>
471
+ <label for="core_notify">
472
+ <input type="checkbox" <?php checked(1, (int)$this->status['core'], true); ?> value="1" id="core_notify" name="_disable_updates[core]"> <?php _e('Disable WordPress Core Update', 'disable-updates-manager') ?>
473
+ </label>
474
+ </span>
475
+ </td>
476
+ </tr>
477
+ </tbody>
478
+ </table>
479
+ <br>
480
+
481
+ <table class="wp-list-table widefat fixed bookmarks" style="width: 590px; border-radius: 4px;">
482
+ <thead>
483
+ <tr>
484
+ <th>Disable Plugins Individually</th>
485
+ </tr>
486
+ </thead>
487
+ <tbody>
488
+ <tr>
489
+ <td>
490
+ <div class="showonhover">
491
+ <label for="ip_notify">
492
+ <input type="checkbox" <?php checked(1, (int)$this->status['ip'], true); ?> value="1" id="ip_notify" name="_disable_updates[ip]"> <?php _e('Disable Plugins Individually', 'disable-updates-manager') ?>
493
+ </label>
494
+
495
+ <span>
496
+ <a href="#" class="viewdescription">?</a>
497
+ <span class="hovertext">Go to the "Plugins" section in your dashboard to disable.</span>
498
+ </span>
499
+ </div>
500
+ </span>
501
+ </td>
502
+ </tr>
503
+ </tbody>
504
+ </table>
505
+ <br>
506
+ <table class="wp-list-table widefat fixed bookmarks" style="width: 590px; border-radius: 4px;">
507
+ <thead>
508
+ <tr>
509
+ <th>Other Settings</th>
510
+ </tr>
511
+ </thead>
512
+ <tbody>
513
+ <tr>
514
+ <td>
515
+ <div class="showonhover">
516
+ <label for="page_notify">
517
+ <input type="checkbox" <?php checked(1, (int)$this->status['page'], true); ?> value="1" id="page_notify" name="_disable_updates[page]"> <?php _e('Remove Updates Page', 'disable-updates-manager') ?>
518
+ </label>
519
+ <span>
520
+ <a href="#" class="viewdescription">?</a>
521
+ <span class="hovertext">The one in the dashboard tab.</span>
522
+ </span>
523
+ </div>
524
+ </span>
525
+ <div class="showonhover">
526
+ <label for="wpv_notify">
527
+ <input type="checkbox" <?php checked(1, (int)$this->status['wpv'], true); ?> value="1" id="wpv_notify" name="_disable_updates[wpv]"> <?php _e('Remove WordPress Core Version', 'disable-updates-manager') ?>
528
+ </label>
529
+ <span>
530
+ <a href="#" class="viewdescription">?</a>
531
+ <span class="hovertext">Removes it for all users.</span>
532
+ </span>
533
+ </div>
534
+ </span>
535
+ <label for="abup_notify">
536
+ <input type="checkbox" <?php checked(1, (int)$this->status['abup'], true); ?> value="1" id="abup_notify" name="_disable_updates[abup]"> <?php _e('Disable Automatic Background Updates', 'disable-updates-manager') ?>
537
+ </label>
538
+ <br>
539
+ </td>
540
+ </tr>
541
+ </tbody>
542
+ </table>
543
+ <p class="submit">
544
+ <input type="submit" class="button-primary" value="<?php _e('Update Settings') ?>" />
545
+ </p>
546
+
547
+ <table class="wp-list-table widefat fixed bookmarks" style="width: auto; padding: 5px; border-radius: 4px;">
548
+ <tbody>
549
+ <tr>
550
+ <td>
551
+ <p align="center">
552
+ <a href="http://wordpress.org/support/plugin/stops-core-theme-and-plugin-updates">Support</a> | <a href="http://www.youtube.com/watch?v=7sMEBGNxhwA">Tutorial</a> | <a href="http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/faq/">FAQ</a> | <a href="https://github.com/Websiteguy/disable-updates-manager">GitHub</a>
553
+ </p>
554
+ </td>
555
+ </tr>
556
+ </tbody>
557
+ </table>
558
+ <div class="error" style="width: 780px;">
559
+ <p>
560
+ <strong>Please Note! - </strong>If either your WordPress core, theme, or plugins get too out of date, you may run into compatibility problems.
561
+ </p>
562
+ </div>
563
+ </form>
564
+ </div>
565
+
566
+ <?php
567
+ }
568
+ }
569
+
570
+ // Start Disable Updates Manager once all other plugins are fully loaded.
571
+ global $Disable_Updates; $Disable_Updates = new Disable_Updates();
572
+
573
+ // Plugin page link.
574
+ add_filter( 'plugin_row_meta', 'thsp_plugin_meta_links', 10, 2 );
575
+
576
+ function thsp_plugin_meta_links( $links, $file ) {
577
+ $plugin = plugin_basename(__FILE__);
578
+
579
+ // Create links.
580
+ if ( $file == $plugin ) {
581
+ return array_merge(
582
+ $links,
583
+ array( '<a href="http://www.wordpress.org/support/plugin/stops-core-theme-and-plugin-updates">Support</a>' ),
584
+ array( '<a href="http://www.wordpress.org/plugins/stops-core-theme-and-plugin-updates/faq/">FAQ</a>' ),
585
+ array( '<a href="http://www.youtube.com/watch?v=7sMEBGNxhwA">Tutorial</a>' ),
586
+ array( '<a href="https://github.com/Websiteguy/disable-updates-manager">GitHub</a>' )
587
+ );
588
+ }
589
+ return $links;
590
+ }
591
+
592
+ // Add links.
593
+ add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), 'thsp_plugin_action_links' );
594
+
595
+ function thsp_plugin_action_links( $links ) {
596
+
597
+ return array_merge(
598
+ array('settings' => '<a href="' . admin_url( 'options-general.php?page=stops-core-theme-and-plugin-updates/Function.php' ) . '">' . __( 'Configure', 'ts-fab' ) . '</a>'),
599
+ $links);
600
+ }
601
+
602
+ // Add Files
603
+
604
+ // Style.css
605
+ function css() {
606
+ wp_register_style('css', plugins_url('style.css',__FILE__ ));
607
+ wp_enqueue_style('css');
608
+ }
609
+ add_action( 'admin_init','css');
610
+
611
+ // uninstall.php
612
+ function php() {
613
+ wp_register_style('php', plugins_url('uninstall.php',__FILE__ ));
614
+ wp_enqueue_style('php');
615
+ }
616
+ add_action( 'admin_init','php');
617
+
618
+ // lang folder
619
+ function action_init() {
620
+ // Load our textdomain
621
+ load_plugin_textdomain('stops-core-theme-and-plugin-updates', false , basename(dirname(__FILE__)).'/lang');
622
+ }
623
+ ?>
readme.txt → Readme.txt RENAMED
@@ -1,277 +1,305 @@
1
- === Disable Updates Manager ===
2
- Contributors: kidsguide
3
- Tags: Disable All Updates, Disable Plugin Updates, Disable Theme Updates, Disable WordPress Core Updates, Disable Core Updates, Disable Updates Settings, Disable Updates, Disable All WordPress Updates, Disable All WordPress Updates Settings, Disable Updates Manager, Disable All Updates Manager, Disable Updates Manager Settings, Update Check
4
- Requires at least: 3.0
5
- Tested up to: 3.8.1
6
- Stable tag: trunk
7
-
8
- A configurable plugin that disables updates. Easy to customize with 7+ settings.
9
-
10
- == Description ==
11
- This plugin is 100% configurable! Check the updates you would like to disable in the settings page.
12
-
13
- Their are also other settings to customize.
14
-
15
- = Features =
16
- <ol>
17
- <li>Disables plugins individually.</li>
18
- <li>Disables plugin updates.</li>
19
- <li>Disables theme updates.</li>
20
- <li>Disable WordPress core updates.</li>
21
- <li>Removes admin footer.</li>
22
- <li>Disables background updates.</li>
23
- <li>Removes updates menu in admin sidebar.</li>
24
- </ol>
25
- and many more things!
26
-
27
- To see more features view the <a href="http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/screenshots/">screenshots</a>.
28
-
29
- = Video Tutorial =
30
- [youtube http://www.youtube.com/watch?v=7sMEBGNxhwA]
31
- <small>Version 3.5.0 tutorial video.</small>
32
-
33
- = Just Won't to Disable One or Two? =
34
- With the settings form under dashboard, it easy. Just check the things you won't disabled. Also if you would like to disable just one plugin, use the Disable Plugins Individually setting.
35
-
36
- == Frequently Asked Questions ==
37
- = Q: How is this plugin different from the other disable updates plugins? =
38
- A: Their are a couple of differences.
39
- <ol>
40
- <li>They do not disable WordPress automatic updates.</li>
41
- <li>They do not have video tutorials and screenshots.</li>
42
- <li>They do not have settings to make it configurable.</li>
43
- <li>They do not disable plugins individually.</li>
44
- </ol>
45
-
46
-
47
- = Q: If I remove this plugin from my website will I be able to update my plugins, themes, and WordPress core again? =
48
- A: Yes, this plugin just disables the update (not removes).
49
-
50
-
51
- = Q: Is it possible to disable one plugin or theme? Are you considering it? =
52
- A: This plugin does not disable themes individual but it can disable plugins individually. We are considering a setting to disable themes individually.
53
-
54
- == Screenshots ==
55
- 1. Settings Page
56
- 2. Disable Plugin Updates
57
- 3. Disable Plugins Individually
58
-
59
- == ==
60
-
61
- The next version of WordPress (3.9) should not have any conflicts with this plugin.
62
-
63
- == Installation ==
64
- Their are two way to install "Disable Updates Manager".
65
-
66
- <strong>1)</strong>
67
- <ol>
68
- <li>Push the button above to download the latest version of "Disable Updates Manager".</li>
69
- <li>Go in your websites admin to the Plugins> Add New> page and push Upload.</li>
70
-
71
- <li>Upload the zip file and push install.</li>
72
- <li>Go to the Plugins section in your admin dashboard and activate.</li>
73
- </ol>
74
-
75
- <strong>2)</strong> <u><strong>Recommended</strong></u>
76
- <ol>
77
  <li>Go in your websites admin to the Plugins> Add New> page and push on the search bar.</li>
78
- <li>Search "Disable Updates Manager" and push install.</li>
79
- <li>Go to the Plugins section in your admin dashboard and activate.</li>
80
- </ol>
81
-
82
- == Changelog ==
83
- = Preview: 3.7.0 + =
84
- * Translation
85
- * Better disable plugins individually feature
86
- * License.txt
87
-
88
- = Versions Available for Downloading =
89
- = 3.6.0 =
90
- * Updated: tutorial link (forgot last update).
91
- * Updated: notice CSS to make auto size.
92
- * Fixed: old name for settings page (in URL).
93
- * Added: style.css.
94
- * Added: uninstall.php.
95
- * Added: "Other Notes" in readme.txt.
96
- * Removed: CSS from function.php.
97
-
98
- = 3.5.0 =
99
- * Added: "Disable Plugins Individually" postbox.
100
- * Removed: "Disable Updates Individually" section.
101
- * Updated: screenshots.
102
- * Updated: video tutorial.
103
- * Updated: readme.txt description.
104
- * Updated: code notes.
105
- * Changed: "Disable Plugin Updates Individually" format (working on better format for upcoming versions).
106
- * Changed: postbox format.
107
- * Changed: "Please Note" border box to proper notice.
108
- * Moved: CSS script.
109
-
110
- = second update =
111
- * Fixed: screenshot error.
112
- * Fixed: changelog error.
113
- * Fixed: contributor error.
114
-
115
- (Sorry for all these errors)
116
-
117
- = 3.4.0 =
118
- * Added "Disable Plugins Individually" Setting and Section
119
- * Added Help Postbox to Settings
120
- * Updated Screenshots
121
- * Added Tooltips to some Settings
122
- * Added Better License
123
- * Updated Description
124
-
125
- = 3.3.0 =
126
- * Fixed Error with Remove WordPress Version from Footer in Admin
127
- * Added Help Spot in Settings
128
- * Added border-radius Code to Postboxes and Boxes
129
- * Updated Screenshots
130
- * FAQ Updated
131
-
132
- = 3.2.0 =
133
- * Fixed Please Note Spelling Mistake
134
- * Fixed Readme.txt Spelling Mistakes
135
- * Works with WordPress 3.8.1
136
- * Changed Video Tutorial Link
137
- * Added CSS to Postboxes and Please Note Box (changed width, added padding, moved around)
138
-
139
- = 3.1.0 =
140
- * Added "Disable Automatic Background Updates" Setting
141
- * Removed "Please Note!" Postbox
142
- * Added "Please Note" Notice in Settings
143
- * Moved Around Other Settings
144
- * Screenshots Updated
145
- * Removed Settings (combined into "Disable All Updates" setting)
146
- * Fixed "Other Settings" Postbox "<span>" Code for Settings
147
- * Updated Video Tutorial (using version 3.1.0)
148
-
149
- = 3.0.0 =
150
- * Updated Readme.txt Description
151
- * Removed "Other Notes" in Readme.txt
152
- * Added More Readme.txt Tags
153
- * Added "Disable Debug E-mails" Setting
154
- * Added "Disable Update E-mails" Setting
155
- * Added "Disable WordPress Automatic Updates" Setting
156
- * Added "Remove WordPress Core Version" Setting
157
- * Added "Please Note" Postbox
158
- * Combined "Disable All Updates" Postbox with "Disable Updates" Postbox
159
- * Fixed Half Screen Display
160
- * Removed Language Translate <small>(didn't work)</small>
161
-
162
- = 2.7.0 =
163
- * Updated Readme.txt Description
164
- * Fixed function in settings.
165
-
166
- = 2.6.0 =
167
- * Added Better Settings Description
168
- * Fixed Disable All Updates Setting Error <strong>(Thanks conservativeread!)</strong>
169
- * Remove the Updates Page Setting from Disable All Updates Setting <strong>(Thanks again conservativeread!)</strong>
170
-
171
- = 2.5.1 =
172
- * Changed Save Button Text
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
173
  * HTML Notes Updated
174
  * Fixed Changelog Errors
175
- * Updated Description
176
-
177
- = 2.5.0 =
178
- * Added Postboxes
179
- * Remove Delete Files Setting
180
- * Added Disable All Updates Setting
181
- * Renamed Name on Settings Page
182
- * HTML Notes Updated
183
- * Delete Translation .mo File
184
- * Readme.txt Error Fixed
185
-
186
- = 2.4.0 =
187
- * Plugin Name Changed (Disable Updates Manager)
188
- * Tags Updated (Make it easier to find this plugin)
189
  * Fixed Some HTML
190
- * Added Translation (Test)
191
-
192
- = 2.3.0 =
193
- * Remove File Setting Added
194
- * Fixed up Settings Page
195
- * Updated Readme.txt
196
- * Removed Tutorial on Settings Page (their is a link to the tutorial in the plugin page)
197
-
198
- = 2.2.1 =
199
- * Fixed Readme.txt Errors with Boxes
200
-
201
- = 2.2.0 =
202
- * Settings Page Updated (Added Tutorial to Settings Page)
203
- * Video Tutorial Updated
204
- * New Settings Page Name (Disable Updates)
205
-
206
- = 2.1.0 =
207
- * Settings Page Updated (under Dashboard and with more settings)
208
- * Fixed Disable Plugin, Theme, and Core Disabling Problem
209
- * Updated Readme.txt
210
- * Removed Hide Updates Notice Setting
211
- * Remove Admin Notice <strong>(Thanks conservativeread!)</strong>
212
-
213
- = 2.0.0 =
214
- * Settings Page Added
215
- * Disable One, Two, or Three Feature Added
216
- * Updated Screenshots
217
- * Updated Readme.txt
218
-
219
- = 1.9.0 =
220
- * Admin Notice Added
221
- * FAQ Error Fixed
222
- * HTML Notes and Some HTML Updated
223
- * Links Added Under Plugin in Dashboard (Support Forum, FAQ, Tutorial)
224
- * Updated Readme.txt
225
-
226
- = 1.8.0 =
227
- * FAQ Added
228
- * HTML Notes Edited
229
- * Updated Readme.txt
230
-
231
- = 1.7.1 =
232
- * Screenshot Error Fixed
233
- * Installation Error Fixed
234
-
235
- = 1.7.0 =
236
- * New Html Code Added (this code disables WordPress automatic updates)
237
- * New Version Numbers (now going up by .1.0)
238
- * Updated Readme.txt (mostly under Installation)
239
-
240
- = 1.6.0 =
241
- * Updated Readme.txt
242
- * Fixed HTML Error
243
- * Video Tutorial Added
244
-
245
- = 1.5 =
246
- * Updated Readme.txt
247
- * Fixed HTML Spacing
248
-
249
- = 1.4 =
250
- * Updated Reame.txt
251
- * Updated HTML Notes
252
-
253
- = 1.3 =
254
- * Updated Readme.txt
255
- * Added a Disable Updates Check Feature
256
-
257
- = 1.2 =
258
- * Updated Readme.txt
259
- * Updated HTML Notes
260
- * Added Disable Update E-mails HTML (Note: This code will only work for some plugins)
261
-
262
- = 1.1 =
263
- * Screenshots Updated
264
- * Fixed Error
265
-
266
- = 1.0.0 =
267
- * Fixed Changelog Problem
268
- * HTML Changed
269
- * Updated Readme.txt
270
- * Works with WordPress 3.8
271
-
272
  = 0.1 =
273
  * Published on Wordpress.org
274
- (September 1, 2013)
275
-
276
- = Note =
277
- Versions 0.2 to 0.9 are not listed in this changelog.
1
+ === Disable Updates Manager ===
2
+ Contributors: kidsguide
3
+ Tags: Disable All Updates, Disable Plugin Updates, Disable Theme Updates, Disable WordPress Core Updates, Disable Core Updates, Disable Updates Settings, Disable Updates, Disable All WordPress Updates, Disable All WordPress Updates Settings, Disable Updates Manager, Disable All Updates Manager, Disable Updates Manager Settings, Update Check
4
+ Requires at least: 3.0
5
+ Tested up to: 3.9
6
+ Stable tag: trunk
7
+
8
+ A configurable plugin that disables updates for you. Easy, clean and helpful.
9
+
10
+ == Description ==
11
+ The best plugin to disable updates is here!
12
+
13
+ This plugin is configurable! Check the updates you would like to disable in the settings page along with other helpful settings. Check the features below or the <a href="http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/screenshots/">screenshots</a> for more information.
14
+
15
+ = Features =
16
+ <ol>
17
+ <li>Disables plugins individually.</li>
18
+ <li>Disables plugin updates.</li>
19
+ <li>Disables theme updates.</li>
20
+ <li>Disable WordPress core updates.</li>
21
+ <li>Removes admin footer.</li>
22
+ <li>Disables background updates.</li>
23
+ <li>Removes updates menu in admin sidebar.</li>
24
+ </ol>
25
+ and many more things!
26
+
27
+ To see more features view the <a href="http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/screenshots/">screenshots</a>.
28
+
29
+ = Video Tutorial =
30
+ [youtube http://www.youtube.com/watch?v=7sMEBGNxhwA]
31
+ <small>Version 3.5.0 tutorial video.</small>
32
+
33
+ == Frequently Asked Questions ==
34
+ = Q: How is this plugin different from the other disable updates plugins? =
35
+ A: Their are a couple of differences.
36
+ <ol>
37
+ <li>They do not disable WordPress automatic updates.</li>
38
+ <li>They do not have video tutorials and screenshots.</li>
39
+ <li>They do not have settings to make it configurable.</li>
40
+ <li>They do not disable plugins individually.</li>
41
+ </ol>
42
+
43
+ = Q: If I remove this plugin from my website will I be able to update my plugins, themes, and WordPress core again? =
44
+ A: Yes, this plugin just disables the update. We has also recently made an uninstall.php for this plugin.
45
+
46
+ = Q: Is it possible to disable one plugin? =
47
+ A: This plugin does not disable themes individual but it can disable plugins individually. We are considering a setting to disable themes individually.
48
+
49
+ = Q: Does this plugin work with WordPress Multisite? =
50
+ A: This plugin doesn't yet, but we are working on this.
51
+
52
+ == Screenshots ==
53
+ 1. Settings Page
54
+ 2. Disable Plugin Updates
55
+ 3. Disable Plugins Individually
56
+
57
+ == Installation ==
58
+ Their are two way to install Disable Updates Manager.
59
+
60
+ <strong>1)</strong>
61
+ <ol>
62
+ <li>Push the button above to download the latest version of Disable Updates Manager.</li>
63
+ <li>Go in your websites admin to the Plugins> Add New> page and push Upload.</li>
64
+
65
+ <li>Upload the zip file and push install.</li>
66
+ <li>Go to the Plugins section in your admin dashboard and activate.</li>
67
+ </ol>
68
+
69
+ <strong>2)</strong> <u><strong>Recommended</strong></u>
70
+ <ol>
 
 
 
 
 
 
71
  <li>Go in your websites admin to the Plugins> Add New> page and push on the search bar.</li>
72
+ <li>Search Disable Updates Manager and push install.</li>
73
+ <li>Go to the Plugins section in your admin dashboard and activate.</li>
74
+ </ol>
75
+
76
+ == Changelog ==
77
+ = Preview: 4.1.0 + =
78
+ * Work on WordPress Multisite capability.
79
+ * New video tutorial.
80
+
81
+ = Versions Available for Downloading =
82
+ = 4.0 =
83
+ * Fixed: output problems.
84
+ * Fixed: remove WordPress version code (removing all footer text now only removes version).
85
+ * Fixed: tooltips CSS; fixed overlapping errors.
86
+ * Updated: readme.txt.
87
+ * Updated: video tutorial (added music). Note: new video tutorial coming soon!
88
+ * Updated: GitHub version to 3.7.0 (Note: We did not put the lang file in GitHub). - Thanks szepe.viktor!
89
+ * Updated: link box CSS in settings.
90
+ * Updated: settings notice CSS.
91
+ * Updated: tooltips text.
92
+ * Renamed: settings page from Disable Updates to Disable Updates Manager.
93
+ * Moved: settings error notice in php.
94
+ * Moved: settings page to Settings section in admin area.
95
+ * Added: some <?php and ?> tags at the end of the files.
96
+ * Added: Settings saved notice in settings.
97
+ * Added: disable core, theme and plugin updates e-mails debug true - Thanks szepe.viktor!
98
+ * Added: license.txt
99
+ * Added: capability with WordPress 3.8.2, 3.8.3, and 3.9.
100
+ * Added: GitHub link in settings.
101
+ * Added: GitHub link under plugin on plugin list.
102
+ * Added: Afrikaans translation.
103
+ * Added: Catatla/Espanya translation.
104
+ * Added: Dansk translation.
105
+ * Added: Deutsch translation.
106
+ * Added: English (Canada) translation.
107
+ * Added: English (UK) translation.
108
+ * Added: Espanol translation.
109
+ * Added: Francais (Canada) translation.
110
+ * Added: Francais (France) translation.
111
+ * Added: Italiano translation.
112
+ * Added: Romana translation.
113
+ * Removed: "New format coming soon!" sign under Disable Plugins Individually setting.
114
+ = Notes =
115
+ * If you have any languages that you would like use to add, please post a support topic on wordpress.org or post it on <a href="https://github.com/Websiteguy/disable-updates-manager">GitHub</a>.
116
+
117
+ = 3.6.0 =
118
+ * Updated: tutorial link (forgot last update).
119
+ * Updated: notice CSS to make auto size.
120
+ * Fixed: old name for settings page (in URL).
121
+ * Added: style.css.
122
+ * Added: uninstall.php.
123
+ * Added: "Other Notes" in readme.txt.
124
+ * Removed: CSS from function.php.
125
+
126
+ = 3.5.0 =
127
+ * Added: "Disable Plugins Individually" postbox.
128
+ * Removed: "Disable Updates Individually" section.
129
+ * Updated: screenshots.
130
+ * Updated: video tutorial.
131
+ * Updated: readme.txt description.
132
+ * Updated: code notes.
133
+ * Changed: "Disable Plugin Updates Individually" format (working on better format for upcoming versions).
134
+ * Changed: postbox format.
135
+ * Changed: "Please Note" border box to proper notice.
136
+ * Moved: CSS script.
137
+
138
+ = second update =
139
+ * Fixed: screenshot error.
140
+ * Fixed: changelog error.
141
+ * Fixed: contributor error.
142
+
143
+ (Sorry for all these errors)
144
+
145
+ = 3.4.0 =
146
+ * Added "Disable Plugins Individually" Setting and Section
147
+ * Added Help Postbox to Settings
148
+ * Updated Screenshots
149
+ * Added Tooltips to some Settings
150
+ * Added Better License
151
+ * Updated Description
152
+
153
+ = 3.3.0 =
154
+ * Fixed Error with Remove WordPress Version from Footer in Admin
155
+ * Added Help Spot in Settings
156
+ * Added border-radius Code to Postboxes and Boxes
157
+ * Updated Screenshots
158
+ * FAQ Updated
159
+
160
+ = 3.2.0 =
161
+ * Fixed Please Note Spelling Mistake
162
+ * Fixed Readme.txt Spelling Mistakes
163
+ * Works with WordPress 3.8.1
164
+ * Changed Video Tutorial Link
165
+ * Added CSS to Postboxes and Please Note Box (changed width, added padding, moved around)
166
+
167
+ = 3.1.0 =
168
+ * Added "Disable Automatic Background Updates" Setting
169
+ * Removed "Please Note!" Postbox
170
+ * Added "Please Note" Notice in Settings
171
+ * Moved Around Other Settings
172
+ * Screenshots Updated
173
+ * Removed Settings (combined into "Disable All Updates" setting)
174
+ * Fixed "Other Settings" Postbox "<span>" Code for Settings
175
+ * Updated Video Tutorial (using version 3.1.0)
176
+
177
+ = 3.0.0 =
178
+ * Updated Readme.txt Description
179
+ * Removed "Other Notes" in Readme.txt
180
+ * Added More Readme.txt Tags
181
+ * Added "Disable Debug E-mails" Setting
182
+ * Added "Disable Update E-mails" Setting
183
+ * Added "Disable WordPress Automatic Updates" Setting
184
+ * Added "Remove WordPress Core Version" Setting
185
+ * Added "Please Note" Postbox
186
+ * Combined "Disable All Updates" Postbox with "Disable Updates" Postbox
187
+ * Fixed Half Screen Display
188
+ * Removed Language Translate <small>(didn't work)</small>
189
+
190
+ = 2.7.0 =
191
+ * Updated Readme.txt Description
192
+ * Fixed function in settings.
193
+
194
+ = 2.6.0 =
195
+ * Added Better Settings Description
196
+ * Fixed Disable All Updates Setting Error <strong>(Thanks conservativeread!)</strong>
197
+ * Remove the Updates Page Setting from Disable All Updates Setting <strong>(Thanks again conservativeread!)</strong>
198
+
199
+ = 2.5.1 =
200
+ * Changed Save Button Text
201
  * HTML Notes Updated
202
  * Fixed Changelog Errors
203
+ * Updated Description
204
+
205
+ = 2.5.0 =
206
+ * Added Postboxes
207
+ * Remove Delete Files Setting
208
+ * Added Disable All Updates Setting
209
+ * Renamed Name on Settings Page
210
+ * HTML Notes Updated
211
+ * Delete Translation .mo File
212
+ * Readme.txt Error Fixed
213
+
214
+ = 2.4.0 =
215
+ * Plugin Name Changed (Disable Updates Manager)
216
+ * Tags Updated (Make it easier to find this plugin)
217
  * Fixed Some HTML
218
+ * Added Translation (Test)
219
+
220
+ = 2.3.0 =
221
+ * Remove File Setting Added
222
+ * Fixed up Settings Page
223
+ * Updated Readme.txt
224
+ * Removed Tutorial on Settings Page (their is a link to the tutorial in the plugin page)
225
+
226
+ = 2.2.1 =
227
+ * Fixed Readme.txt Errors with Boxes
228
+
229
+ = 2.2.0 =
230
+ * Settings Page Updated (Added Tutorial to Settings Page)
231
+ * Video Tutorial Updated
232
+ * New Settings Page Name (Disable Updates)
233
+
234
+ = 2.1.0 =
235
+ * Settings Page Updated (under Dashboard and with more settings)
236
+ * Fixed Disable Plugin, Theme, and Core Disabling Problem
237
+ * Updated Readme.txt
238
+ * Removed Hide Updates Notice Setting
239
+ * Remove Admin Notice <strong>(Thanks conservativeread!)</strong>
240
+
241
+ = 2.0.0 =
242
+ * Settings Page Added
243
+ * Disable One, Two, or Three Feature Added
244
+ * Updated Screenshots
245
+ * Updated Readme.txt
246
+
247
+ = 1.9.0 =
248
+ * Admin Notice Added
249
+ * FAQ Error Fixed
250
+ * HTML Notes and Some HTML Updated
251
+ * Links Added Under Plugin in Dashboard (Support Forum, FAQ, Tutorial)
252
+ * Updated Readme.txt
253
+
254
+ = 1.8.0 =
255
+ * FAQ Added
256
+ * HTML Notes Edited
257
+ * Updated Readme.txt
258
+
259
+ = 1.7.1 =
260
+ * Screenshot Error Fixed
261
+ * Installation Error Fixed
262
+
263
+ = 1.7.0 =
264
+ * New Html Code Added (this code disables WordPress automatic updates)
265
+ * New Version Numbers (now going up by .1.0)
266
+ * Updated Readme.txt (mostly under Installation)
267
+
268
+ = 1.6.0 =
269
+ * Updated Readme.txt
270
+ * Fixed HTML Error
271
+ * Video Tutorial Added
272
+
273
+ = 1.5 =
274
+ * Updated Readme.txt
275
+ * Fixed HTML Spacing
276
+
277
+ = 1.4 =
278
+ * Updated Reame.txt
279
+ * Updated HTML Notes
280
+
281
+ = 1.3 =
282
+ * Updated Readme.txt
283
+ * Added a Disable Updates Check Feature
284
+
285
+ = 1.2 =
286
+ * Updated Readme.txt
287
+ * Updated HTML Notes
288
+ * Added Disable Update E-mails HTML (Note: This code will only work for some plugins)
289
+
290
+ = 1.1 =
291
+ * Screenshots Updated
292
+ * Fixed Error
293
+
294
+ = 1.0.0 =
295
+ * Fixed Changelog Problem
296
+ * HTML Changed
297
+ * Updated Readme.txt
298
+ * Works with WordPress 3.8
299
+
300
  = 0.1 =
301
  * Published on Wordpress.org
302
+ (September 1, 2013)
303
+
304
+ = Note =
305
+ Versions 0.2 to 0.9 are not listed in this changelog.
lang/en_CA.mo ADDED
Binary file
lang/stops-core-theme-and-plugin-updates-af_AF.mo ADDED
Binary file
lang/stops-core-theme-and-plugin-updates-af_AF.po ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Disable Updates Manager v3.7.0\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2014-04-09 20:48:23+0000\n"
7
+ "Last-Translator: Websiteguy <mpsparrow@cogeco.ca>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Generator: CSL v1.x\n"
14
+ "X-Poedit-Language: Afrikaans\n"
15
+ "X-Poedit-Country: SOUTH AFRICA\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
18
+ "X-Poedit-Basepath: ../\n"
19
+ "X-Poedit-Bookmarks: \n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Textdomain-Support: yes"
22
+
23
+ #. translators: plugin header field 'Name'
24
+ #: Function.php:0
25
+ #@ stops-core-theme-and-plugin-updates
26
+ msgid "Disable Updates Manager"
27
+ msgstr ""
28
+
29
+ #. translators: plugin header field 'PluginURI'
30
+ #: Function.php:0
31
+ #@ stops-core-theme-and-plugin-updates
32
+ msgid "http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/"
33
+ msgstr ""
34
+
35
+ #. translators: plugin header field 'Description'
36
+ #: Function.php:0
37
+ #@ stops-core-theme-and-plugin-updates
38
+ msgid "Pick which type of updates you would like to disable. Just use the settings."
39
+ msgstr ""
40
+
41
+ #. translators: plugin header field 'Author'
42
+ #: Function.php:0
43
+ #@ stops-core-theme-and-plugin-updates
44
+ msgid "Websiteguy"
45
+ msgstr ""
46
+
47
+ #. translators: plugin header field 'AuthorURI'
48
+ #: Function.php:0
49
+ #@ stops-core-theme-and-plugin-updates
50
+ msgid "http://profiles.wordpress.org/kidsguide/"
51
+ msgstr ""
52
+
53
+ #. translators: plugin header field 'Version'
54
+ #: Function.php:0
55
+ #@ stops-core-theme-and-plugin-updates
56
+ msgid "3.7.0"
57
+ msgstr ""
58
+
59
+ #: Function.php:82
60
+ #@ disable-updates-manager
61
+ msgid "Disable Updates"
62
+ msgstr ""
63
+
64
+ #: Function.php:413
65
+ #@ default
66
+ msgid "You do not have permissions to access this page."
67
+ msgstr ""
68
+
69
+ #: Function.php:419
70
+ #@ disable-updates-manager
71
+ msgid "Disable Updates Manager Settings"
72
+ msgstr ""
73
+
74
+ #: Function.php:441
75
+ #@ disable-updates-manager
76
+ msgid "Disable All Updates"
77
+ msgstr ""
78
+
79
+ #: Function.php:451
80
+ #@ disable-updates-manager
81
+ msgid "Disable Plugin Updates"
82
+ msgstr ""
83
+
84
+ #: Function.php:455
85
+ #@ disable-updates-manager
86
+ msgid "Disable Theme Updates"
87
+ msgstr ""
88
+
89
+ #: Function.php:459
90
+ #@ disable-updates-manager
91
+ msgid "Disable WordPress Core Update"
92
+ msgstr ""
93
+
94
+ #: Function.php:479
95
+ #@ disable-updates-manager
96
+ msgid "Disable Plugins Individually"
97
+ msgstr ""
98
+
99
+ #: Function.php:504
100
+ #@ disable-updates-manager
101
+ msgid "Remove Updates Page"
102
+ msgstr ""
103
+
104
+ #: Function.php:514
105
+ #@ disable-updates-manager
106
+ msgid "Remove WordPress Core Version"
107
+ msgstr ""
108
+
109
+ #: Function.php:523
110
+ #@ disable-updates-manager
111
+ msgid "Disable Automatic Background Updates"
112
+ msgstr ""
113
+
114
+ #: Function.php:531
115
+ #@ default
116
+ msgid "Update Settings"
117
+ msgstr ""
118
+
119
+ #: Function.php:579
120
+ #@ ts-fab
121
+ msgid "Configure"
122
+ msgstr ""
123
+
lang/stops-core-theme-and-plugin-updates-ca_ES.mo ADDED
Binary file
lang/stops-core-theme-and-plugin-updates-ca_ES.po ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Disable Updates Manager v3.7.0\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2014-04-09 20:56:07+0000\n"
7
+ "Last-Translator: Websiteguy <mpsparrow@cogeco.ca>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Generator: CSL v1.x\n"
14
+ "X-Poedit-Language: Catalan\n"
15
+ "X-Poedit-Country: SPAIN\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
18
+ "X-Poedit-Basepath: ../\n"
19
+ "X-Poedit-Bookmarks: \n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Textdomain-Support: yes"
22
+
23
+ #. translators: plugin header field 'Name'
24
+ #: Function.php:0
25
+ #@ stops-core-theme-and-plugin-updates
26
+ msgid "Disable Updates Manager"
27
+ msgstr ""
28
+
29
+ #. translators: plugin header field 'PluginURI'
30
+ #: Function.php:0
31
+ #@ stops-core-theme-and-plugin-updates
32
+ msgid "http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/"
33
+ msgstr ""
34
+
35
+ #. translators: plugin header field 'Description'
36
+ #: Function.php:0
37
+ #@ stops-core-theme-and-plugin-updates
38
+ msgid "Pick which type of updates you would like to disable. Just use the settings."
39
+ msgstr ""
40
+
41
+ #. translators: plugin header field 'Author'
42
+ #: Function.php:0
43
+ #@ stops-core-theme-and-plugin-updates
44
+ msgid "Websiteguy"
45
+ msgstr ""
46
+
47
+ #. translators: plugin header field 'AuthorURI'
48
+ #: Function.php:0
49
+ #@ stops-core-theme-and-plugin-updates
50
+ msgid "http://profiles.wordpress.org/kidsguide/"
51
+ msgstr ""
52
+
53
+ #. translators: plugin header field 'Version'
54
+ #: Function.php:0
55
+ #@ stops-core-theme-and-plugin-updates
56
+ msgid "3.7.0"
57
+ msgstr ""
58
+
59
+ #: Function.php:82
60
+ #@ disable-updates-manager
61
+ msgid "Disable Updates"
62
+ msgstr ""
63
+
64
+ #: Function.php:413
65
+ #@ default
66
+ msgid "You do not have permissions to access this page."
67
+ msgstr ""
68
+
69
+ #: Function.php:419
70
+ #@ disable-updates-manager
71
+ msgid "Disable Updates Manager Settings"
72
+ msgstr ""
73
+
74
+ #: Function.php:441
75
+ #@ disable-updates-manager
76
+ msgid "Disable All Updates"
77
+ msgstr ""
78
+
79
+ #: Function.php:451
80
+ #@ disable-updates-manager
81
+ msgid "Disable Plugin Updates"
82
+ msgstr ""
83
+
84
+ #: Function.php:455
85
+ #@ disable-updates-manager
86
+ msgid "Disable Theme Updates"
87
+ msgstr ""
88
+
89
+ #: Function.php:459
90
+ #@ disable-updates-manager
91
+ msgid "Disable WordPress Core Update"
92
+ msgstr ""
93
+
94
+ #: Function.php:479
95
+ #@ disable-updates-manager
96
+ msgid "Disable Plugins Individually"
97
+ msgstr ""
98
+
99
+ #: Function.php:504
100
+ #@ disable-updates-manager
101
+ msgid "Remove Updates Page"
102
+ msgstr ""
103
+
104
+ #: Function.php:514
105
+ #@ disable-updates-manager
106
+ msgid "Remove WordPress Core Version"
107
+ msgstr ""
108
+
109
+ #: Function.php:523
110
+ #@ disable-updates-manager
111
+ msgid "Disable Automatic Background Updates"
112
+ msgstr ""
113
+
114
+ #: Function.php:531
115
+ #@ default
116
+ msgid "Update Settings"
117
+ msgstr ""
118
+
119
+ #: Function.php:579
120
+ #@ ts-fab
121
+ msgid "Configure"
122
+ msgstr ""
123
+
lang/stops-core-theme-and-plugin-updates-da_DK.mo ADDED
Binary file
lang/stops-core-theme-and-plugin-updates-da_DK.po ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Disable Updates Manager v3.7.0\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2014-04-09 20:56:02+0000\n"
7
+ "Last-Translator: Websiteguy <mpsparrow@cogeco.ca>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Generator: CSL v1.x\n"
14
+ "X-Poedit-Language: Danish\n"
15
+ "X-Poedit-Country: DENMARK\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
18
+ "X-Poedit-Basepath: ../\n"
19
+ "X-Poedit-Bookmarks: \n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Textdomain-Support: yes"
22
+
23
+ #. translators: plugin header field 'Name'
24
+ #: Function.php:0
25
+ #@ stops-core-theme-and-plugin-updates
26
+ msgid "Disable Updates Manager"
27
+ msgstr ""
28
+
29
+ #. translators: plugin header field 'PluginURI'
30
+ #: Function.php:0
31
+ #@ stops-core-theme-and-plugin-updates
32
+ msgid "http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/"
33
+ msgstr ""
34
+
35
+ #. translators: plugin header field 'Description'
36
+ #: Function.php:0
37
+ #@ stops-core-theme-and-plugin-updates
38
+ msgid "Pick which type of updates you would like to disable. Just use the settings."
39
+ msgstr ""
40
+
41
+ #. translators: plugin header field 'Author'
42
+ #: Function.php:0
43
+ #@ stops-core-theme-and-plugin-updates
44
+ msgid "Websiteguy"
45
+ msgstr ""
46
+
47
+ #. translators: plugin header field 'AuthorURI'
48
+ #: Function.php:0
49
+ #@ stops-core-theme-and-plugin-updates
50
+ msgid "http://profiles.wordpress.org/kidsguide/"
51
+ msgstr ""
52
+
53
+ #. translators: plugin header field 'Version'
54
+ #: Function.php:0
55
+ #@ stops-core-theme-and-plugin-updates
56
+ msgid "3.7.0"
57
+ msgstr ""
58
+
59
+ #: Function.php:82
60
+ #@ disable-updates-manager
61
+ msgid "Disable Updates"
62
+ msgstr ""
63
+
64
+ #: Function.php:413
65
+ #@ default
66
+ msgid "You do not have permissions to access this page."
67
+ msgstr ""
68
+
69
+ #: Function.php:419
70
+ #@ disable-updates-manager
71
+ msgid "Disable Updates Manager Settings"
72
+ msgstr ""
73
+
74
+ #: Function.php:441
75
+ #@ disable-updates-manager
76
+ msgid "Disable All Updates"
77
+ msgstr ""
78
+
79
+ #: Function.php:451
80
+ #@ disable-updates-manager
81
+ msgid "Disable Plugin Updates"
82
+ msgstr ""
83
+
84
+ #: Function.php:455
85
+ #@ disable-updates-manager
86
+ msgid "Disable Theme Updates"
87
+ msgstr ""
88
+
89
+ #: Function.php:459
90
+ #@ disable-updates-manager
91
+ msgid "Disable WordPress Core Update"
92
+ msgstr ""
93
+
94
+ #: Function.php:479
95
+ #@ disable-updates-manager
96
+ msgid "Disable Plugins Individually"
97
+ msgstr ""
98
+
99
+ #: Function.php:504
100
+ #@ disable-updates-manager
101
+ msgid "Remove Updates Page"
102
+ msgstr ""
103
+
104
+ #: Function.php:514
105
+ #@ disable-updates-manager
106
+ msgid "Remove WordPress Core Version"
107
+ msgstr ""
108
+
109
+ #: Function.php:523
110
+ #@ disable-updates-manager
111
+ msgid "Disable Automatic Background Updates"
112
+ msgstr ""
113
+
114
+ #: Function.php:531
115
+ #@ default
116
+ msgid "Update Settings"
117
+ msgstr ""
118
+
119
+ #: Function.php:579
120
+ #@ ts-fab
121
+ msgid "Configure"
122
+ msgstr ""
123
+
lang/stops-core-theme-and-plugin-updates-de_DE.mo ADDED
Binary file
lang/stops-core-theme-and-plugin-updates-de_DE.po ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Disable Updates Manager v3.7.0\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2014-04-09 20:55:55+0000\n"
7
+ "Last-Translator: webguyplugins <mpsparrow@cogeco.ca>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Generator: CSL v1.x\n"
14
+ "X-Poedit-Language: German\n"
15
+ "X-Poedit-Country: GERMANY\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
18
+ "X-Poedit-Basepath: ../\n"
19
+ "X-Poedit-Bookmarks: \n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Textdomain-Support: yes"
22
+
23
+ #. translators: plugin header field 'Name'
24
+ #: Function.php:0
25
+ #@ stops-core-theme-and-plugin-updates
26
+ msgid "Disable Updates Manager"
27
+ msgstr ""
28
+
29
+ #. translators: plugin header field 'PluginURI'
30
+ #: Function.php:0
31
+ #@ stops-core-theme-and-plugin-updates
32
+ msgid "http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/"
33
+ msgstr ""
34
+
35
+ #. translators: plugin header field 'Description'
36
+ #: Function.php:0
37
+ #@ stops-core-theme-and-plugin-updates
38
+ msgid "Pick which type of updates you would like to disable. Just use the settings."
39
+ msgstr ""
40
+
41
+ #. translators: plugin header field 'Author'
42
+ #: Function.php:0
43
+ #@ stops-core-theme-and-plugin-updates
44
+ msgid "Websiteguy"
45
+ msgstr ""
46
+
47
+ #. translators: plugin header field 'AuthorURI'
48
+ #: Function.php:0
49
+ #@ stops-core-theme-and-plugin-updates
50
+ msgid "http://profiles.wordpress.org/kidsguide/"
51
+ msgstr ""
52
+
53
+ #. translators: plugin header field 'Version'
54
+ #: Function.php:0
55
+ #@ stops-core-theme-and-plugin-updates
56
+ msgid "3.7.0"
57
+ msgstr ""
58
+
59
+ #: Function.php:82
60
+ #@ disable-updates-manager
61
+ msgid "Disable Updates"
62
+ msgstr ""
63
+
64
+ #: Function.php:413
65
+ #@ default
66
+ msgid "You do not have permissions to access this page."
67
+ msgstr ""
68
+
69
+ #: Function.php:419
70
+ #@ disable-updates-manager
71
+ msgid "Disable Updates Manager Settings"
72
+ msgstr ""
73
+
74
+ #: Function.php:441
75
+ #@ disable-updates-manager
76
+ msgid "Disable All Updates"
77
+ msgstr ""
78
+
79
+ #: Function.php:451
80
+ #@ disable-updates-manager
81
+ msgid "Disable Plugin Updates"
82
+ msgstr ""
83
+
84
+ #: Function.php:455
85
+ #@ disable-updates-manager
86
+ msgid "Disable Theme Updates"
87
+ msgstr ""
88
+
89
+ #: Function.php:459
90
+ #@ disable-updates-manager
91
+ msgid "Disable WordPress Core Update"
92
+ msgstr ""
93
+
94
+ #: Function.php:479
95
+ #@ disable-updates-manager
96
+ msgid "Disable Plugins Individually"
97
+ msgstr ""
98
+
99
+ #: Function.php:504
100
+ #@ disable-updates-manager
101
+ msgid "Remove Updates Page"
102
+ msgstr ""
103
+
104
+ #: Function.php:514
105
+ #@ disable-updates-manager
106
+ msgid "Remove WordPress Core Version"
107
+ msgstr ""
108
+
109
+ #: Function.php:523
110
+ #@ disable-updates-manager
111
+ msgid "Disable Automatic Background Updates"
112
+ msgstr ""
113
+
114
+ #: Function.php:531
115
+ #@ default
116
+ msgid "Update Settings"
117
+ msgstr ""
118
+
119
+ #: Function.php:579
120
+ #@ ts-fab
121
+ msgid "Configure"
122
+ msgstr ""
123
+
lang/stops-core-theme-and-plugin-updates-en_CA.mo ADDED
Binary file
lang/stops-core-theme-and-plugin-updates-en_CA.po ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Disable Updates Manager v3.7.0\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2014-04-09 20:49:59+0000\n"
7
+ "Last-Translator: Websiteguy <mpsparrow@cogeco.ca>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Generator: CSL v1.x\n"
14
+ "X-Poedit-Language: English\n"
15
+ "X-Poedit-Country: CANADA\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
18
+ "X-Poedit-Basepath: ../\n"
19
+ "X-Poedit-Bookmarks: \n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Textdomain-Support: yes"
22
+
23
+ #. translators: plugin header field 'Name'
24
+ #: Function.php:0
25
+ #@ stops-core-theme-and-plugin-updates
26
+ msgid "Disable Updates Manager"
27
+ msgstr ""
28
+
29
+ #. translators: plugin header field 'PluginURI'
30
+ #: Function.php:0
31
+ #@ stops-core-theme-and-plugin-updates
32
+ msgid "http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/"
33
+ msgstr ""
34
+
35
+ #. translators: plugin header field 'Description'
36
+ #: Function.php:0
37
+ #@ stops-core-theme-and-plugin-updates
38
+ msgid "Pick which type of updates you would like to disable. Just use the settings."
39
+ msgstr ""
40
+
41
+ #. translators: plugin header field 'Author'
42
+ #: Function.php:0
43
+ #@ stops-core-theme-and-plugin-updates
44
+ msgid "Websiteguy"
45
+ msgstr ""
46
+
47
+ #. translators: plugin header field 'AuthorURI'
48
+ #: Function.php:0
49
+ #@ stops-core-theme-and-plugin-updates
50
+ msgid "http://profiles.wordpress.org/kidsguide/"
51
+ msgstr ""
52
+
53
+ #. translators: plugin header field 'Version'
54
+ #: Function.php:0
55
+ #@ stops-core-theme-and-plugin-updates
56
+ msgid "3.7.0"
57
+ msgstr ""
58
+
59
+ #: Function.php:82
60
+ #@ disable-updates-manager
61
+ msgid "Disable Updates"
62
+ msgstr ""
63
+
64
+ #: Function.php:413
65
+ #@ default
66
+ msgid "You do not have permissions to access this page."
67
+ msgstr ""
68
+
69
+ #: Function.php:419
70
+ #@ disable-updates-manager
71
+ msgid "Disable Updates Manager Settings"
72
+ msgstr ""
73
+
74
+ #: Function.php:441
75
+ #@ disable-updates-manager
76
+ msgid "Disable All Updates"
77
+ msgstr ""
78
+
79
+ #: Function.php:451
80
+ #@ disable-updates-manager
81
+ msgid "Disable Plugin Updates"
82
+ msgstr ""
83
+
84
+ #: Function.php:455
85
+ #@ disable-updates-manager
86
+ msgid "Disable Theme Updates"
87
+ msgstr ""
88
+
89
+ #: Function.php:459
90
+ #@ disable-updates-manager
91
+ msgid "Disable WordPress Core Update"
92
+ msgstr ""
93
+
94
+ #: Function.php:479
95
+ #@ disable-updates-manager
96
+ msgid "Disable Plugins Individually"
97
+ msgstr ""
98
+
99
+ #: Function.php:504
100
+ #@ disable-updates-manager
101
+ msgid "Remove Updates Page"
102
+ msgstr ""
103
+
104
+ #: Function.php:514
105
+ #@ disable-updates-manager
106
+ msgid "Remove WordPress Core Version"
107
+ msgstr ""
108
+
109
+ #: Function.php:523
110
+ #@ disable-updates-manager
111
+ msgid "Disable Automatic Background Updates"
112
+ msgstr ""
113
+
114
+ #: Function.php:531
115
+ #@ default
116
+ msgid "Update Settings"
117
+ msgstr ""
118
+
119
+ #: Function.php:579
120
+ #@ ts-fab
121
+ msgid "Configure"
122
+ msgstr ""
123
+
lang/stops-core-theme-and-plugin-updates-en_GB.mo ADDED
Binary file
lang/stops-core-theme-and-plugin-updates-en_GB.po ADDED
@@ -0,0 +1,128 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Disable Updates Manager v3.7.0\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2014-04-09 21:00:11+0000\n"
7
+ "Last-Translator: Websiteguy <mpsparrow@cogeco.ca>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Generator: CSL v1.x\n"
14
+ "X-Poedit-Language: English\n"
15
+ "X-Poedit-Country: UNITED KINGDOM\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
18
+ "X-Poedit-Basepath: ../\n"
19
+ "X-Poedit-Bookmarks: \n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Textdomain-Support: yes"
22
+
23
+ #. translators: plugin header field 'Name'
24
+ #: Function.php:0
25
+ #@ stops-core-theme-and-plugin-updates
26
+ msgid "Disable Updates Manager"
27
+ msgstr ""
28
+
29
+ #. translators: plugin header field 'PluginURI'
30
+ #: Function.php:0
31
+ #@ stops-core-theme-and-plugin-updates
32
+ msgid "http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/"
33
+ msgstr ""
34
+
35
+ #. translators: plugin header field 'Description'
36
+ #: Function.php:0
37
+ #@ stops-core-theme-and-plugin-updates
38
+ msgid "Pick which type of updates you would like to disable. Just use the settings."
39
+ msgstr ""
40
+
41
+ #. translators: plugin header field 'Author'
42
+ #: Function.php:0
43
+ #@ stops-core-theme-and-plugin-updates
44
+ msgid "Websiteguy"
45
+ msgstr ""
46
+
47
+ #. translators: plugin header field 'AuthorURI'
48
+ #: Function.php:0
49
+ #@ stops-core-theme-and-plugin-updates
50
+ msgid "http://profiles.wordpress.org/kidsguide/"
51
+ msgstr ""
52
+
53
+ #. translators: plugin header field 'Version'
54
+ #: Function.php:0
55
+ #@ stops-core-theme-and-plugin-updates
56
+ msgid "3.7.0"
57
+ msgstr ""
58
+
59
+ #: Function.php:82
60
+ #@ disable-updates-manager
61
+ msgid "Disable Updates"
62
+ msgstr ""
63
+
64
+ #: Function.php:413
65
+ #@ default
66
+ msgid "You do not have permissions to access this page."
67
+ msgstr ""
68
+
69
+ #: Function.php:419
70
+ #@ disable-updates-manager
71
+ msgid "Disable Updates Manager Settings"
72
+ msgstr ""
73
+
74
+ #: Function.php:441
75
+ #@ disable-updates-manager
76
+ msgid "Disable All Updates"
77
+ msgstr ""
78
+
79
+ #: Function.php:451
80
+ #@ disable-updates-manager
81
+ msgid "Disable Plugin Updates"
82
+ msgstr ""
83
+
84
+ #: Function.php:455
85
+ #@ disable-updates-manager
86
+ msgid "Disable Theme Updates"
87
+ msgstr ""
88
+
89
+ #: Function.php:459
90
+ #@ disable-updates-manager
91
+ msgid "Disable WordPress Core Update"
92
+ msgstr ""
93
+
94
+ #: Function.php:479
95
+ #@ disable-updates-manager
96
+ msgid "Disable Plugins Individually"
97
+ msgstr ""
98
+
99
+ #: Function.php:504
100
+ #@ disable-updates-manager
101
+ msgid "Remove Updates Page"
102
+ msgstr ""
103
+
104
+ #: Function.php:514
105
+ #@ disable-updates-manager
106
+ msgid "Remove WordPress Core Version"
107
+ msgstr ""
108
+
109
+ #: Function.php:523
110
+ #@ disable-updates-manager
111
+ msgid "Disable Automatic Background Updates"
112
+ msgstr ""
113
+
114
+ #: Function.php:531
115
+ #@ default
116
+ msgid "Update Settings"
117
+ msgstr ""
118
+
119
+ #: Function.php:579
120
+ #@ ts-fab
121
+ msgid "Configure"
122
+ msgstr ""
123
+
124
+ #: Function.php:602
125
+ #@ lang
126
+ msgid "Could not load the localization file: "
127
+ msgstr ""
128
+
lang/stops-core-theme-and-plugin-updates-es_ES.mo ADDED
Binary file
lang/stops-core-theme-and-plugin-updates-es_ES.po ADDED
@@ -0,0 +1,128 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Disable Updates Manager v3.7.0\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2014-04-09 21:00:18+0000\n"
7
+ "Last-Translator: Websiteguy <mpsparrow@cogeco.ca>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Generator: CSL v1.x\n"
14
+ "X-Poedit-Language: Spanish\n"
15
+ "X-Poedit-Country: SPAIN\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
18
+ "X-Poedit-Basepath: ../\n"
19
+ "X-Poedit-Bookmarks: \n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Textdomain-Support: yes"
22
+
23
+ #. translators: plugin header field 'Name'
24
+ #: Function.php:0
25
+ #@ stops-core-theme-and-plugin-updates
26
+ msgid "Disable Updates Manager"
27
+ msgstr ""
28
+
29
+ #. translators: plugin header field 'PluginURI'
30
+ #: Function.php:0
31
+ #@ stops-core-theme-and-plugin-updates
32
+ msgid "http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/"
33
+ msgstr ""
34
+
35
+ #. translators: plugin header field 'Description'
36
+ #: Function.php:0
37
+ #@ stops-core-theme-and-plugin-updates
38
+ msgid "Pick which type of updates you would like to disable. Just use the settings."
39
+ msgstr ""
40
+
41
+ #. translators: plugin header field 'Author'
42
+ #: Function.php:0
43
+ #@ stops-core-theme-and-plugin-updates
44
+ msgid "Websiteguy"
45
+ msgstr ""
46
+
47
+ #. translators: plugin header field 'AuthorURI'
48
+ #: Function.php:0
49
+ #@ stops-core-theme-and-plugin-updates
50
+ msgid "http://profiles.wordpress.org/kidsguide/"
51
+ msgstr ""
52
+
53
+ #. translators: plugin header field 'Version'
54
+ #: Function.php:0
55
+ #@ stops-core-theme-and-plugin-updates
56
+ msgid "3.7.0"
57
+ msgstr ""
58
+
59
+ #: Function.php:82
60
+ #@ disable-updates-manager
61
+ msgid "Disable Updates"
62
+ msgstr ""
63
+
64
+ #: Function.php:413
65
+ #@ default
66
+ msgid "You do not have permissions to access this page."
67
+ msgstr ""
68
+
69
+ #: Function.php:419
70
+ #@ disable-updates-manager
71
+ msgid "Disable Updates Manager Settings"
72
+ msgstr ""
73
+
74
+ #: Function.php:441
75
+ #@ disable-updates-manager
76
+ msgid "Disable All Updates"
77
+ msgstr ""
78
+
79
+ #: Function.php:451
80
+ #@ disable-updates-manager
81
+ msgid "Disable Plugin Updates"
82
+ msgstr ""
83
+
84
+ #: Function.php:455
85
+ #@ disable-updates-manager
86
+ msgid "Disable Theme Updates"
87
+ msgstr ""
88
+
89
+ #: Function.php:459
90
+ #@ disable-updates-manager
91
+ msgid "Disable WordPress Core Update"
92
+ msgstr ""
93
+
94
+ #: Function.php:479
95
+ #@ disable-updates-manager
96
+ msgid "Disable Plugins Individually"
97
+ msgstr ""
98
+
99
+ #: Function.php:504
100
+ #@ disable-updates-manager
101
+ msgid "Remove Updates Page"
102
+ msgstr ""
103
+
104
+ #: Function.php:514
105
+ #@ disable-updates-manager
106
+ msgid "Remove WordPress Core Version"
107
+ msgstr ""
108
+
109
+ #: Function.php:523
110
+ #@ disable-updates-manager
111
+ msgid "Disable Automatic Background Updates"
112
+ msgstr ""
113
+
114
+ #: Function.php:531
115
+ #@ default
116
+ msgid "Update Settings"
117
+ msgstr ""
118
+
119
+ #: Function.php:579
120
+ #@ ts-fab
121
+ msgid "Configure"
122
+ msgstr ""
123
+
124
+ #: Function.php:602
125
+ #@ lang
126
+ msgid "Could not load the localization file: "
127
+ msgstr ""
128
+
lang/stops-core-theme-and-plugin-updates-fr_CA.mo ADDED
Binary file
lang/stops-core-theme-and-plugin-updates-fr_CA.po ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Disable Updates Manager v3.7.0\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2014-04-09 21:16:03+0000\n"
7
+ "Last-Translator: Websiteguy <mpsparrow@cogeco.ca>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n>1;\n"
13
+ "X-Generator: CSL v1.x\n"
14
+ "X-Poedit-Language: French\n"
15
+ "X-Poedit-Country: CANADA\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
18
+ "X-Poedit-Basepath: ../\n"
19
+ "X-Poedit-Bookmarks: \n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Textdomain-Support: yes"
22
+
23
+ #. translators: plugin header field 'Name'
24
+ #: Function.php:0
25
+ #@ stops-core-theme-and-plugin-updates
26
+ msgid "Disable Updates Manager"
27
+ msgstr ""
28
+
29
+ #. translators: plugin header field 'PluginURI'
30
+ #: Function.php:0
31
+ #@ stops-core-theme-and-plugin-updates
32
+ msgid "http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/"
33
+ msgstr ""
34
+
35
+ #. translators: plugin header field 'Description'
36
+ #: Function.php:0
37
+ #@ stops-core-theme-and-plugin-updates
38
+ msgid "Pick which type of updates you would like to disable. Just use the settings."
39
+ msgstr ""
40
+
41
+ #. translators: plugin header field 'Author'
42
+ #: Function.php:0
43
+ #@ stops-core-theme-and-plugin-updates
44
+ msgid "Websiteguy"
45
+ msgstr ""
46
+
47
+ #. translators: plugin header field 'AuthorURI'
48
+ #: Function.php:0
49
+ #@ stops-core-theme-and-plugin-updates
50
+ msgid "http://profiles.wordpress.org/kidsguide/"
51
+ msgstr ""
52
+
53
+ #. translators: plugin header field 'Version'
54
+ #: Function.php:0
55
+ #@ stops-core-theme-and-plugin-updates
56
+ msgid "3.7.0"
57
+ msgstr ""
58
+
59
+ #: Function.php:82
60
+ #@ disable-updates-manager
61
+ msgid "Disable Updates"
62
+ msgstr ""
63
+
64
+ #: Function.php:413
65
+ #@ default
66
+ msgid "You do not have permissions to access this page."
67
+ msgstr ""
68
+
69
+ #: Function.php:419
70
+ #@ disable-updates-manager
71
+ msgid "Disable Updates Manager Settings"
72
+ msgstr ""
73
+
74
+ #: Function.php:441
75
+ #@ disable-updates-manager
76
+ msgid "Disable All Updates"
77
+ msgstr ""
78
+
79
+ #: Function.php:451
80
+ #@ disable-updates-manager
81
+ msgid "Disable Plugin Updates"
82
+ msgstr ""
83
+
84
+ #: Function.php:455
85
+ #@ disable-updates-manager
86
+ msgid "Disable Theme Updates"
87
+ msgstr ""
88
+
89
+ #: Function.php:459
90
+ #@ disable-updates-manager
91
+ msgid "Disable WordPress Core Update"
92
+ msgstr ""
93
+
94
+ #: Function.php:479
95
+ #@ disable-updates-manager
96
+ msgid "Disable Plugins Individually"
97
+ msgstr ""
98
+
99
+ #: Function.php:504
100
+ #@ disable-updates-manager
101
+ msgid "Remove Updates Page"
102
+ msgstr ""
103
+
104
+ #: Function.php:514
105
+ #@ disable-updates-manager
106
+ msgid "Remove WordPress Core Version"
107
+ msgstr ""
108
+
109
+ #: Function.php:523
110
+ #@ disable-updates-manager
111
+ msgid "Disable Automatic Background Updates"
112
+ msgstr ""
113
+
114
+ #: Function.php:531
115
+ #@ default
116
+ msgid "Update Settings"
117
+ msgstr ""
118
+
119
+ #: Function.php:579
120
+ #@ ts-fab
121
+ msgid "Configure"
122
+ msgstr ""
123
+
lang/stops-core-theme-and-plugin-updates-fr_FR.mo ADDED
Binary file
lang/stops-core-theme-and-plugin-updates-fr_FR.po ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Disable Updates Manager v3.7.0\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2014-04-09 21:16:08+0000\n"
7
+ "Last-Translator: Websiteguy <mpsparrow@cogeco.ca>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n>1;\n"
13
+ "X-Generator: CSL v1.x\n"
14
+ "X-Poedit-Language: French\n"
15
+ "X-Poedit-Country: FRANCE\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
18
+ "X-Poedit-Basepath: ../\n"
19
+ "X-Poedit-Bookmarks: \n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Textdomain-Support: yes"
22
+
23
+ #. translators: plugin header field 'Name'
24
+ #: Function.php:0
25
+ #@ stops-core-theme-and-plugin-updates
26
+ msgid "Disable Updates Manager"
27
+ msgstr ""
28
+
29
+ #. translators: plugin header field 'PluginURI'
30
+ #: Function.php:0
31
+ #@ stops-core-theme-and-plugin-updates
32
+ msgid "http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/"
33
+ msgstr ""
34
+
35
+ #. translators: plugin header field 'Description'
36
+ #: Function.php:0
37
+ #@ stops-core-theme-and-plugin-updates
38
+ msgid "Pick which type of updates you would like to disable. Just use the settings."
39
+ msgstr ""
40
+
41
+ #. translators: plugin header field 'Author'
42
+ #: Function.php:0
43
+ #@ stops-core-theme-and-plugin-updates
44
+ msgid "Websiteguy"
45
+ msgstr ""
46
+
47
+ #. translators: plugin header field 'AuthorURI'
48
+ #: Function.php:0
49
+ #@ stops-core-theme-and-plugin-updates
50
+ msgid "http://profiles.wordpress.org/kidsguide/"
51
+ msgstr ""
52
+
53
+ #. translators: plugin header field 'Version'
54
+ #: Function.php:0
55
+ #@ stops-core-theme-and-plugin-updates
56
+ msgid "3.7.0"
57
+ msgstr ""
58
+
59
+ #: Function.php:82
60
+ #@ disable-updates-manager
61
+ msgid "Disable Updates"
62
+ msgstr ""
63
+
64
+ #: Function.php:413
65
+ #@ default
66
+ msgid "You do not have permissions to access this page."
67
+ msgstr ""
68
+
69
+ #: Function.php:419
70
+ #@ disable-updates-manager
71
+ msgid "Disable Updates Manager Settings"
72
+ msgstr ""
73
+
74
+ #: Function.php:441
75
+ #@ disable-updates-manager
76
+ msgid "Disable All Updates"
77
+ msgstr ""
78
+
79
+ #: Function.php:451
80
+ #@ disable-updates-manager
81
+ msgid "Disable Plugin Updates"
82
+ msgstr ""
83
+
84
+ #: Function.php:455
85
+ #@ disable-updates-manager
86
+ msgid "Disable Theme Updates"
87
+ msgstr ""
88
+
89
+ #: Function.php:459
90
+ #@ disable-updates-manager
91
+ msgid "Disable WordPress Core Update"
92
+ msgstr ""
93
+
94
+ #: Function.php:479
95
+ #@ disable-updates-manager
96
+ msgid "Disable Plugins Individually"
97
+ msgstr ""
98
+
99
+ #: Function.php:504
100
+ #@ disable-updates-manager
101
+ msgid "Remove Updates Page"
102
+ msgstr ""
103
+
104
+ #: Function.php:514
105
+ #@ disable-updates-manager
106
+ msgid "Remove WordPress Core Version"
107
+ msgstr ""
108
+
109
+ #: Function.php:523
110
+ #@ disable-updates-manager
111
+ msgid "Disable Automatic Background Updates"
112
+ msgstr ""
113
+
114
+ #: Function.php:531
115
+ #@ default
116
+ msgid "Update Settings"
117
+ msgstr ""
118
+
119
+ #: Function.php:579
120
+ #@ ts-fab
121
+ msgid "Configure"
122
+ msgstr ""
123
+
lang/stops-core-theme-and-plugin-updates-it_IT.mo ADDED
Binary file
lang/stops-core-theme-and-plugin-updates-it_IT.po ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Disable Updates Manager v3.7.0\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2014-04-09 21:16:13+0000\n"
7
+ "Last-Translator: Websiteguy <mpsparrow@cogeco.ca>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Generator: CSL v1.x\n"
14
+ "X-Poedit-Language: Italian\n"
15
+ "X-Poedit-Country: ITALY\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
18
+ "X-Poedit-Basepath: ../\n"
19
+ "X-Poedit-Bookmarks: \n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Textdomain-Support: yes"
22
+
23
+ #. translators: plugin header field 'Name'
24
+ #: Function.php:0
25
+ #@ stops-core-theme-and-plugin-updates
26
+ msgid "Disable Updates Manager"
27
+ msgstr ""
28
+
29
+ #. translators: plugin header field 'PluginURI'
30
+ #: Function.php:0
31
+ #@ stops-core-theme-and-plugin-updates
32
+ msgid "http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/"
33
+ msgstr ""
34
+
35
+ #. translators: plugin header field 'Description'
36
+ #: Function.php:0
37
+ #@ stops-core-theme-and-plugin-updates
38
+ msgid "Pick which type of updates you would like to disable. Just use the settings."
39
+ msgstr ""
40
+
41
+ #. translators: plugin header field 'Author'
42
+ #: Function.php:0
43
+ #@ stops-core-theme-and-plugin-updates
44
+ msgid "Websiteguy"
45
+ msgstr ""
46
+
47
+ #. translators: plugin header field 'AuthorURI'
48
+ #: Function.php:0
49
+ #@ stops-core-theme-and-plugin-updates
50
+ msgid "http://profiles.wordpress.org/kidsguide/"
51
+ msgstr ""
52
+
53
+ #. translators: plugin header field 'Version'
54
+ #: Function.php:0
55
+ #@ stops-core-theme-and-plugin-updates
56
+ msgid "3.7.0"
57
+ msgstr ""
58
+
59
+ #: Function.php:82
60
+ #@ disable-updates-manager
61
+ msgid "Disable Updates"
62
+ msgstr ""
63
+
64
+ #: Function.php:413
65
+ #@ default
66
+ msgid "You do not have permissions to access this page."
67
+ msgstr ""
68
+
69
+ #: Function.php:419
70
+ #@ disable-updates-manager
71
+ msgid "Disable Updates Manager Settings"
72
+ msgstr ""
73
+
74
+ #: Function.php:441
75
+ #@ disable-updates-manager
76
+ msgid "Disable All Updates"
77
+ msgstr ""
78
+
79
+ #: Function.php:451
80
+ #@ disable-updates-manager
81
+ msgid "Disable Plugin Updates"
82
+ msgstr ""
83
+
84
+ #: Function.php:455
85
+ #@ disable-updates-manager
86
+ msgid "Disable Theme Updates"
87
+ msgstr ""
88
+
89
+ #: Function.php:459
90
+ #@ disable-updates-manager
91
+ msgid "Disable WordPress Core Update"
92
+ msgstr ""
93
+
94
+ #: Function.php:479
95
+ #@ disable-updates-manager
96
+ msgid "Disable Plugins Individually"
97
+ msgstr ""
98
+
99
+ #: Function.php:504
100
+ #@ disable-updates-manager
101
+ msgid "Remove Updates Page"
102
+ msgstr ""
103
+
104
+ #: Function.php:514
105
+ #@ disable-updates-manager
106
+ msgid "Remove WordPress Core Version"
107
+ msgstr ""
108
+
109
+ #: Function.php:523
110
+ #@ disable-updates-manager
111
+ msgid "Disable Automatic Background Updates"
112
+ msgstr ""
113
+
114
+ #: Function.php:531
115
+ #@ default
116
+ msgid "Update Settings"
117
+ msgstr ""
118
+
119
+ #: Function.php:579
120
+ #@ ts-fab
121
+ msgid "Configure"
122
+ msgstr ""
123
+
lang/stops-core-theme-and-plugin-updates-ro_RO.mo ADDED
Binary file
lang/stops-core-theme-and-plugin-updates-ro_RO.po ADDED
@@ -0,0 +1,128 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Disable Updates Manager v3.7.0\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2014-04-09 21:00:24+0000\n"
7
+ "Last-Translator: Websiteguy <mpsparrow@cogeco.ca>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Generator: CSL v1.x\n"
14
+ "X-Poedit-Language: Romanian\n"
15
+ "X-Poedit-Country: ROMANIA\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
18
+ "X-Poedit-Basepath: ../\n"
19
+ "X-Poedit-Bookmarks: \n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Textdomain-Support: yes"
22
+
23
+ #. translators: plugin header field 'Name'
24
+ #: Function.php:0
25
+ #@ stops-core-theme-and-plugin-updates
26
+ msgid "Disable Updates Manager"
27
+ msgstr ""
28
+
29
+ #. translators: plugin header field 'PluginURI'
30
+ #: Function.php:0
31
+ #@ stops-core-theme-and-plugin-updates
32
+ msgid "http://wordpress.org/plugins/stops-core-theme-and-plugin-updates/"
33
+ msgstr ""
34
+
35
+ #. translators: plugin header field 'Description'
36
+ #: Function.php:0
37
+ #@ stops-core-theme-and-plugin-updates
38
+ msgid "Pick which type of updates you would like to disable. Just use the settings."
39
+ msgstr ""
40
+
41
+ #. translators: plugin header field 'Author'
42
+ #: Function.php:0
43
+ #@ stops-core-theme-and-plugin-updates
44
+ msgid "Websiteguy"
45
+ msgstr ""
46
+
47
+ #. translators: plugin header field 'AuthorURI'
48
+ #: Function.php:0
49
+ #@ stops-core-theme-and-plugin-updates
50
+ msgid "http://profiles.wordpress.org/kidsguide/"
51
+ msgstr ""
52
+
53
+ #. translators: plugin header field 'Version'
54
+ #: Function.php:0
55
+ #@ stops-core-theme-and-plugin-updates
56
+ msgid "3.7.0"
57
+ msgstr ""
58
+
59
+ #: Function.php:82
60
+ #@ disable-updates-manager
61
+ msgid "Disable Updates"
62
+ msgstr ""
63
+
64
+ #: Function.php:413
65
+ #@ default
66
+ msgid "You do not have permissions to access this page."
67
+ msgstr ""
68
+
69
+ #: Function.php:419
70
+ #@ disable-updates-manager
71
+ msgid "Disable Updates Manager Settings"
72
+ msgstr ""
73
+
74
+ #: Function.php:441
75
+ #@ disable-updates-manager
76
+ msgid "Disable All Updates"
77
+ msgstr ""
78
+
79
+ #: Function.php:451
80
+ #@ disable-updates-manager
81
+ msgid "Disable Plugin Updates"
82
+ msgstr ""
83
+
84
+ #: Function.php:455
85
+ #@ disable-updates-manager
86
+ msgid "Disable Theme Updates"
87
+ msgstr ""
88
+
89
+ #: Function.php:459
90
+ #@ disable-updates-manager
91
+ msgid "Disable WordPress Core Update"
92
+ msgstr ""
93
+
94
+ #: Function.php:479
95
+ #@ disable-updates-manager
96
+ msgid "Disable Plugins Individually"
97
+ msgstr ""
98
+
99
+ #: Function.php:504
100
+ #@ disable-updates-manager
101
+ msgid "Remove Updates Page"
102
+ msgstr ""
103
+
104
+ #: Function.php:514
105
+ #@ disable-updates-manager
106
+ msgid "Remove WordPress Core Version"
107
+ msgstr ""
108
+
109
+ #: Function.php:523
110
+ #@ disable-updates-manager
111
+ msgid "Disable Automatic Background Updates"
112
+ msgstr ""
113
+
114
+ #: Function.php:531
115
+ #@ default
116
+ msgid "Update Settings"
117
+ msgstr ""
118
+
119
+ #: Function.php:579
120
+ #@ ts-fab
121
+ msgid "Configure"
122
+ msgstr ""
123
+
124
+ #: Function.php:602
125
+ #@ lang
126
+ msgid "Could not load the localization file: "
127
+ msgstr ""
128
+
license.txt ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ The GPLv2 (or later) from the Free Software Foundation is the license that the WordPress software is under. Its text follows.
2
+ Version 2, June 1991
3
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc. 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
4
+ Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
5
+ Preamble
6
+ The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software — to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation’s software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too.
7
+ When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things.
8
+ To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it.
9
+ For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.
10
+ We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software.
11
+ Also, for each author’s protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations.
12
+ Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone’s free use or not licensed at all.
13
+ The precise terms and conditions for copying, distribution and modification follow.
14
+ GNU General Public License Terms and Conditions for Copying, Distribution, and Modification 0.This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1.You may copy and distribute verbatim copies of the Program’s source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2.You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a.You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b.You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c.If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3.You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a.Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b.Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c.Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code.
15
+ 4.You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5.You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6.Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7.If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8.If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9.The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10.If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. 11.BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12.IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
style.css CHANGED
@@ -1,4 +1,4 @@
1
- /* Tooltips CSS */
2
 
3
  .showonhover {
4
  position: relative;
@@ -7,13 +7,17 @@
7
  .showonhover .hovertext {
8
  opacity: 0;
9
  top: -99999px;
10
- position:absolute;
11
- z-index:1000;
12
- border:1px solid #ffd971;
13
- background-color:#fffdce;
14
- padding:7.5px;
15
- width:170px;
16
- font-size: 0.90em;
 
 
 
 
17
  -webkit-transition: opacity 0.3s ease;
18
  -moz-transition: opacity 0.3s ease;
19
  -o-transition: opacity 0.3s ease;
@@ -21,7 +25,8 @@
21
  }
22
 
23
  .showonhover:hover .hovertext {
24
- opacity:1;top:0;
 
25
  }
26
 
27
  a.viewdescription {
@@ -31,4 +36,4 @@
31
  a.viewdescription:hover {
32
  background-color:#999;
33
  color: White;
34
- }
1
+ /* Tooltips CSS */
2
 
3
  .showonhover {
4
  position: relative;
7
  .showonhover .hovertext {
8
  opacity: 0;
9
  top: -99999px;
10
+ position: absolute;
11
+ z-index: 1000;
12
+ border: 1px solid #ffd971;
13
+ background-color: #fffdce;
14
+ padding-top: 1.5px;
15
+ padding-bottom: 1.5px;
16
+ padding-right: 7.5px;
17
+ padding-left: 7.5px;
18
+ width: auto;
19
+ height: auto;
20
+ font-size: 0.85em;
21
  -webkit-transition: opacity 0.3s ease;
22
  -moz-transition: opacity 0.3s ease;
23
  -o-transition: opacity 0.3s ease;
25
  }
26
 
27
  .showonhover:hover .hovertext {
28
+ opacity: 1;
29
+ top: 0;
30
  }
31
 
32
  a.viewdescription {
36
  a.viewdescription:hover {
37
  background-color:#999;
38
  color: White;
39
+ }
uninstall.php CHANGED
@@ -1,7 +1,11 @@
1
  <?php
 
 
2
  if ( !defined( 'WP_UNINSTALL_PLUGIN' ) ) {
3
- // not defined, abort
4
  exit ();
5
  }
6
- // it was defined, now delete
7
- delete_option('_disable_updates');
 
 
 
1
  <?php
2
+
3
+ // uninstall code
4
  if ( !defined( 'WP_UNINSTALL_PLUGIN' ) ) {
 
5
  exit ();
6
  }
7
+
8
+ // it was defined, now delete
9
+ delete_option('_disable_updates');
10
+
11
+ ?>