Plugin Directory

Changeset 831189


Ignore:
Timestamp:
01/01/2014 04:16:45 PM (12 years ago)
Author:
GeekPress
Message:

tagging version 1.1.2

Location:
update-notifications-manager
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • update-notifications-manager/tags/1.1.2/readme.txt

    r498204 r831189  
    33Tags: disable, plugin, theme, core, updates
    44Requires at least: 3.0
    5 Tested up to: 3.3.1
    6 Stable tag: 1.1.1
     5Tested up to: 3.8
     6Stable tag: 1.1.2
    77
    88Disable notifications for updates to plugins, themes, and version of WordPress
     
    3232== Changelog ==
    3333
     34= 1.1.2 =
     35* Fix notice error with register_uninstall_hook
     36
    3437= 1.1.1 =
    3538* Add Spanish translation
  • update-notifications-manager/tags/1.1.2/update-notifications-manager.php

    r451230 r831189  
    33/*
    44Plugin Name: Update Notifications Manager
    5 Plugin URI: http://www.geekpress.fr/wordpress/extension/update-notifications-manager-desactiver-notifications-mise-a-jour-556/
     5Plugin URI: http://wordpress.org/plugins/update-notifications-manager/
    66Description: This plugin allows you to disable notifications for updates to plugins, themes, and new versions of WordPress
    7 Version: 1.1.1
     7Version: 1.1.2
    88Author: GeekPress
    99Author URI: http://www.geekpress.fr/
     
    5050        $this->load_update_notifications();
    5151       
    52        
    53         //tell wp what to do when plugin is deactivated
    54         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        
    6052    }
    6153   
    62    
    63    
    64     /**
    65      * method deactivate
    66      *
    67      * * This function is called when plugin is desactivated.
    68      *
    69      * @since 1.1
    70     **/
    71     function deactivate()
    72     {
    73         delete_option('_update_notifications');
    74     }
    7554   
    7655   
     
    217196// Start this plugin once all other plugins are fully loaded
    218197global $Update_Notifications; $Update_Notifications = new Update_Notifications();
    219 ?>
  • update-notifications-manager/trunk/readme.txt

    r498204 r831189  
    33Tags: disable, plugin, theme, core, updates
    44Requires at least: 3.0
    5 Tested up to: 3.3.1
    6 Stable tag: 1.1.1
     5Tested up to: 3.8
     6Stable tag: 1.1.2
    77
    88Disable notifications for updates to plugins, themes, and version of WordPress
     
    3232== Changelog ==
    3333
     34= 1.1.2 =
     35* Fix notice error with register_uninstall_hook
     36
    3437= 1.1.1 =
    3538* Add Spanish translation
  • update-notifications-manager/trunk/update-notifications-manager.php

    r451230 r831189  
    33/*
    44Plugin Name: Update Notifications Manager
    5 Plugin URI: http://www.geekpress.fr/wordpress/extension/update-notifications-manager-desactiver-notifications-mise-a-jour-556/
     5Plugin URI: http://wordpress.org/plugins/update-notifications-manager/
    66Description: This plugin allows you to disable notifications for updates to plugins, themes, and new versions of WordPress
    7 Version: 1.1.1
     7Version: 1.1.2
    88Author: GeekPress
    99Author URI: http://www.geekpress.fr/
     
    5050        $this->load_update_notifications();
    5151       
    52        
    53         //tell wp what to do when plugin is deactivated
    54         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        
    6052    }
    6153   
    62    
    63    
    64     /**
    65      * method deactivate
    66      *
    67      * * This function is called when plugin is desactivated.
    68      *
    69      * @since 1.1
    70     **/
    71     function deactivate()
    72     {
    73         delete_option('_update_notifications');
    74     }
    7554   
    7655   
     
    217196// Start this plugin once all other plugins are fully loaded
    218197global $Update_Notifications; $Update_Notifications = new Update_Notifications();
    219 ?>
Note: See TracChangeset for help on using the changeset viewer.