Changeset 831189
- Timestamp:
- 01/01/2014 04:16:45 PM (12 years ago)
- Location:
- update-notifications-manager
- Files:
-
- 4 edited
- 1 copied
-
tags/1.1.2 (copied) (copied from update-notifications-manager/trunk)
-
tags/1.1.2/readme.txt (modified) (2 diffs)
-
tags/1.1.2/update-notifications-manager.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/update-notifications-manager.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
update-notifications-manager/tags/1.1.2/readme.txt
r498204 r831189 3 3 Tags: disable, plugin, theme, core, updates 4 4 Requires at least: 3.0 5 Tested up to: 3. 3.16 Stable tag: 1.1. 15 Tested up to: 3.8 6 Stable tag: 1.1.2 7 7 8 8 Disable notifications for updates to plugins, themes, and version of WordPress … … 32 32 == Changelog == 33 33 34 = 1.1.2 = 35 * Fix notice error with register_uninstall_hook 36 34 37 = 1.1.1 = 35 38 * Add Spanish translation -
update-notifications-manager/tags/1.1.2/update-notifications-manager.php
r451230 r831189 3 3 /* 4 4 Plugin Name: Update Notifications Manager 5 Plugin URI: http://w ww.geekpress.fr/wordpress/extension/update-notifications-manager-desactiver-notifications-mise-a-jour-556/5 Plugin URI: http://wordpress.org/plugins/update-notifications-manager/ 6 6 Description: This plugin allows you to disable notifications for updates to plugins, themes, and new versions of WordPress 7 Version: 1.1. 17 Version: 1.1.2 8 8 Author: GeekPress 9 9 Author URI: http://www.geekpress.fr/ … … 50 50 $this->load_update_notifications(); 51 51 52 53 //tell wp what to do when plugin is deactivated54 if (function_exists('register_uninstall_hook'))55 register_uninstall_hook(__FILE__, array(&$this, 'deactivate'));56 57 if (function_exists('register_deactivation_hook'))58 register_deactivation_hook(__FILE__, array(&$this, 'deactivate'));59 60 52 } 61 53 62 63 64 /**65 * method deactivate66 *67 * * This function is called when plugin is desactivated.68 *69 * @since 1.170 **/71 function deactivate()72 {73 delete_option('_update_notifications');74 }75 54 76 55 … … 217 196 // Start this plugin once all other plugins are fully loaded 218 197 global $Update_Notifications; $Update_Notifications = new Update_Notifications(); 219 ?> -
update-notifications-manager/trunk/readme.txt
r498204 r831189 3 3 Tags: disable, plugin, theme, core, updates 4 4 Requires at least: 3.0 5 Tested up to: 3. 3.16 Stable tag: 1.1. 15 Tested up to: 3.8 6 Stable tag: 1.1.2 7 7 8 8 Disable notifications for updates to plugins, themes, and version of WordPress … … 32 32 == Changelog == 33 33 34 = 1.1.2 = 35 * Fix notice error with register_uninstall_hook 36 34 37 = 1.1.1 = 35 38 * Add Spanish translation -
update-notifications-manager/trunk/update-notifications-manager.php
r451230 r831189 3 3 /* 4 4 Plugin Name: Update Notifications Manager 5 Plugin URI: http://w ww.geekpress.fr/wordpress/extension/update-notifications-manager-desactiver-notifications-mise-a-jour-556/5 Plugin URI: http://wordpress.org/plugins/update-notifications-manager/ 6 6 Description: This plugin allows you to disable notifications for updates to plugins, themes, and new versions of WordPress 7 Version: 1.1. 17 Version: 1.1.2 8 8 Author: GeekPress 9 9 Author URI: http://www.geekpress.fr/ … … 50 50 $this->load_update_notifications(); 51 51 52 53 //tell wp what to do when plugin is deactivated54 if (function_exists('register_uninstall_hook'))55 register_uninstall_hook(__FILE__, array(&$this, 'deactivate'));56 57 if (function_exists('register_deactivation_hook'))58 register_deactivation_hook(__FILE__, array(&$this, 'deactivate'));59 60 52 } 61 53 62 63 64 /**65 * method deactivate66 *67 * * This function is called when plugin is desactivated.68 *69 * @since 1.170 **/71 function deactivate()72 {73 delete_option('_update_notifications');74 }75 54 76 55 … … 217 196 // Start this plugin once all other plugins are fully loaded 218 197 global $Update_Notifications; $Update_Notifications = new Update_Notifications(); 219 ?>
Note: See TracChangeset
for help on using the changeset viewer.