]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/includes/plugin.php
WordPress 3.9.1-scripts
[autoinstalls/wordpress.git] / wp-admin / includes / plugin.php
index be97e8c381cf8de11f3910de7b846a6879c6eb3d..08adef827bbc4553ca3daab7676d01a92b3aea5c 100644 (file)
@@ -65,8 +65,8 @@
  * @since 1.5.0
  *
  * @param string $plugin_file Path to the plugin file
- * @param bool $markup If the returned data should have HTML markup applied
- * @param bool $translate If the returned data should be translated
+ * @param bool $markup Optional. If the returned data should have HTML markup applied. Defaults to true.
+ * @param bool $translate Optional. If the returned data should be translated. Defaults to true.
  * @return array See above for description.
  */
 function get_plugin_data( $plugin_file, $markup = true, $translate = true ) {
@@ -88,68 +88,88 @@ function get_plugin_data( $plugin_file, $markup = true, $translate = true ) {
        $plugin_data = get_file_data( $plugin_file, $default_headers, 'plugin' );
 
        // Site Wide Only is the old header for Network
-       if ( empty( $plugin_data['Network'] ) && ! empty( $plugin_data['_sitewide'] ) ) {
+       if ( ! $plugin_data['Network'] && $plugin_data['_sitewide'] ) {
                _deprecated_argument( __FUNCTION__, '3.0', sprintf( __( 'The <code>%1$s</code> plugin header is deprecated. Use <code>%2$s</code> instead.' ), 'Site Wide Only: true', 'Network: true' ) );
                $plugin_data['Network'] = $plugin_data['_sitewide'];
        }
        $plugin_data['Network'] = ( 'true' == strtolower( $plugin_data['Network'] ) );
        unset( $plugin_data['_sitewide'] );
 
-       //For backward compatibility by default Title is the same as Name.
-       $plugin_data['Title'] = $plugin_data['Name'];
-
-       if ( $markup || $translate )
+       if ( $markup || $translate ) {
                $plugin_data = _get_plugin_data_markup_translate( $plugin_file, $plugin_data, $markup, $translate );
-       else
+       } else {
+               $plugin_data['Title']      = $plugin_data['Name'];
                $plugin_data['AuthorName'] = $plugin_data['Author'];
+       }
 
        return $plugin_data;
 }
 
-function _get_plugin_data_markup_translate($plugin_file, $plugin_data, $markup = true, $translate = true) {
+/**
+ * Sanitizes plugin data, optionally adds markup, optionally translates.
+ *
+ * @since 2.7.0
+ * @access private
+ * @see get_plugin_data()
+ */
+function _get_plugin_data_markup_translate( $plugin_file, $plugin_data, $markup = true, $translate = true ) {
 
-       //Translate fields
-       if ( $translate && ! empty($plugin_data['TextDomain']) ) {
-               if ( ! empty( $plugin_data['DomainPath'] ) )
-                       load_plugin_textdomain($plugin_data['TextDomain'], false, dirname($plugin_file). $plugin_data['DomainPath']);
-               else
-                       load_plugin_textdomain($plugin_data['TextDomain'], false, dirname($plugin_file));
+       // Sanitize the plugin filename to a WP_PLUGIN_DIR relative path
+       $plugin_file = plugin_basename( $plugin_file );
 
-               foreach ( array('Name', 'PluginURI', 'Description', 'Author', 'AuthorURI', 'Version') as $field )
-                       $plugin_data[ $field ] = translate($plugin_data[ $field ], $plugin_data['TextDomain']);
+       // Translate fields
+       if ( $translate ) {
+               if ( $textdomain = $plugin_data['TextDomain'] ) {
+                       if ( $plugin_data['DomainPath'] )
+                               load_plugin_textdomain( $textdomain, false, dirname( $plugin_file ) . $plugin_data['DomainPath'] );
+                       else
+                               load_plugin_textdomain( $textdomain, false, dirname( $plugin_file ) );
+               } elseif ( in_array( basename( $plugin_file ), array( 'hello.php', 'akismet.php' ) ) ) {
+                       $textdomain = 'default';
+               }
+               if ( $textdomain ) {
+                       foreach ( array( 'Name', 'PluginURI', 'Description', 'Author', 'AuthorURI', 'Version' ) as $field )
+                               $plugin_data[ $field ] = translate( $plugin_data[ $field ], $textdomain );
+               }
        }
 
-       $plugins_allowedtags = array(
-               'a'       => array( 'href' => array(), 'title' => array() ),
-               'abbr'    => array( 'title' => array() ),
-               'acronym' => array( 'title' => array() ),
-               'code'    => array(),
-               'em'      => array(),
-               'strong'  => array(),
+       // Sanitize fields
+       $allowed_tags = $allowed_tags_in_links = array(
+               'abbr'    => array( 'title' => true ),
+               'acronym' => array( 'title' => true ),
+               'code'    => true,
+               'em'      => true,
+               'strong'  => true,
        );
+       $allowed_tags['a'] = array( 'href' => true, 'title' => true );
+
+       // Name is marked up inside <a> tags. Don't allow these.
+       // Author is too, but some plugins have used <a> here (omitting Author URI).
+       $plugin_data['Name']        = wp_kses( $plugin_data['Name'],        $allowed_tags_in_links );
+       $plugin_data['Author']      = wp_kses( $plugin_data['Author'],      $allowed_tags );
+
+       $plugin_data['Description'] = wp_kses( $plugin_data['Description'], $allowed_tags );
+       $plugin_data['Version']     = wp_kses( $plugin_data['Version'],     $allowed_tags );
 
-       $plugin_data['AuthorName'] = $plugin_data['Author'] = wp_kses( $plugin_data['Author'], $plugins_allowedtags );
+       $plugin_data['PluginURI']   = esc_url( $plugin_data['PluginURI'] );
+       $plugin_data['AuthorURI']   = esc_url( $plugin_data['AuthorURI'] );
 
-       //Apply Markup
+       $plugin_data['Title']      = $plugin_data['Name'];
+       $plugin_data['AuthorName'] = $plugin_data['Author'];
+
+       // Apply markup
        if ( $markup ) {
-               if ( ! empty($plugin_data['PluginURI']) && ! empty($plugin_data['Name']) )
+               if ( $plugin_data['PluginURI'] && $plugin_data['Name'] )
                        $plugin_data['Title'] = '<a href="' . $plugin_data['PluginURI'] . '" title="' . esc_attr__( 'Visit plugin homepage' ) . '">' . $plugin_data['Name'] . '</a>';
-               else
-                       $plugin_data['Title'] = $plugin_data['Name'];
 
-               if ( ! empty($plugin_data['AuthorURI']) && ! empty($plugin_data['Author']) )
+               if ( $plugin_data['AuthorURI'] && $plugin_data['Author'] )
                        $plugin_data['Author'] = '<a href="' . $plugin_data['AuthorURI'] . '" title="' . esc_attr__( 'Visit author homepage' ) . '">' . $plugin_data['Author'] . '</a>';
 
                $plugin_data['Description'] = wptexturize( $plugin_data['Description'] );
-               if ( ! empty($plugin_data['Author']) )
-                       $plugin_data['Description'] .= ' <cite>' . sprintf( __('By %s'), $plugin_data['Author'] ) . '.</cite>';
-       }
 
-       // Sanitize all displayed data. Author and AuthorName sanitized above.
-       $plugin_data['Title']       = wp_kses( $plugin_data['Title'],       $plugins_allowedtags );
-       $plugin_data['Version']     = wp_kses( $plugin_data['Version'],     $plugins_allowedtags );
-       $plugin_data['Description'] = wp_kses( $plugin_data['Description'], $plugins_allowedtags );
-       $plugin_data['Name']        = wp_kses( $plugin_data['Name'],        $plugins_allowedtags );
+               if ( $plugin_data['Author'] )
+                       $plugin_data['Description'] .= ' <cite>' . sprintf( __('By %s.'), $plugin_data['Author'] ) . '</cite>';
+       }
 
        return $plugin_data;
 }
@@ -504,6 +524,7 @@ function activate_plugin( $plugin, $redirect = '', $network_wide = false, $silen
        if ( is_multisite() && ( $network_wide || is_network_only_plugin($plugin) ) ) {
                $network_wide = true;
                $current = get_site_option( 'active_sitewide_plugins', array() );
+               $_GET['networkwide'] = 1; // Back compat for plugins looking for this value.
        } else {
                $current = get_option( 'active_plugins', array() );
        }
@@ -516,10 +537,39 @@ function activate_plugin( $plugin, $redirect = '', $network_wide = false, $silen
                if ( !empty($redirect) )
                        wp_redirect(add_query_arg('_error_nonce', wp_create_nonce('plugin-activation-error_' . $plugin), $redirect)); // we'll override this later if the plugin can be included without fatal error
                ob_start();
-               include_once(WP_PLUGIN_DIR . '/' . $plugin);
+               wp_register_plugin_realpath( WP_PLUGIN_DIR . '/' . $plugin );
+               include_once( WP_PLUGIN_DIR . '/' . $plugin );
 
                if ( ! $silent ) {
+                       /**
+                        * Fires before a plugin is activated.
+                        *
+                        * If a plugin is silently activated (such as during an update),
+                        * this hook does not fire.
+                        *
+                        * @since 2.9.0
+                        *
+                        * @param string $plugin       Plugin path to main plugin file with plugin data.
+                        * @param bool   $network_wide Whether to enable the plugin for all sites in the network
+                        *                             or just the current site. Multisite only. Default is false.
+                        */
                        do_action( 'activate_plugin', $plugin, $network_wide );
+
+                       /**
+                        * Fires as a specific plugin is being deactivated.
+                        *
+                        * This hook is the "deactivation" hook used internally by
+                        * register_deactivation_hook(). The dynamic portion of the
+                        * hook name, $plugin. refers to the plugin basename.
+                        *
+                        * If a plugin is silently activated (such as during an update),
+                        * this hook does not fire.
+                        *
+                        * @since 2.0.0
+                        *
+                        * @param bool $network_wide Whether to enable the plugin for all sites in the network
+                        *                           or just the current site. Multisite only. Default is false.
+                        */
                        do_action( 'activate_' . $plugin, $network_wide );
                }
 
@@ -533,6 +583,18 @@ function activate_plugin( $plugin, $redirect = '', $network_wide = false, $silen
                }
 
                if ( ! $silent ) {
+                       /**
+                        * Fires after a plugin has been activated.
+                        *
+                        * If a plugin is silently activated (such as during an update),
+                        * this hook does not fire.
+                        *
+                        * @since 2.9.0
+                        *
+                        * @param string $plugin       Plugin path to main plugin file with plugin data.
+                        * @param bool   $network_wide Whether to enable the plugin for all sites in the network
+                        *                             or just the current site. Multisite only. Default is false.
+                        */
                        do_action( 'activated_plugin', $plugin, $network_wide );
                }
 
@@ -556,8 +618,10 @@ function activate_plugin( $plugin, $redirect = '', $network_wide = false, $silen
  *
  * @param string|array $plugins Single plugin or list of plugins to deactivate.
  * @param bool $silent Prevent calling deactivation hooks. Default is false.
+ * @param mixed $network_wide Whether to deactivate the plugin for all sites in the network.
+ *     A value of null (the default) will deactivate plugins for both the site and the network.
  */
-function deactivate_plugins( $plugins, $silent = false ) {
+function deactivate_plugins( $plugins, $silent = false, $network_wide = null ) {
        if ( is_multisite() )
                $network_current = get_site_option( 'active_sitewide_plugins', array() );
        $current = get_option( 'active_plugins', array() );
@@ -568,25 +632,72 @@ function deactivate_plugins( $plugins, $silent = false ) {
                if ( ! is_plugin_active($plugin) )
                        continue;
 
-               $network_wide = is_plugin_active_for_network( $plugin );
+               $network_deactivating = false !== $network_wide && is_plugin_active_for_network( $plugin );
+
+               if ( ! $silent ) {
+                       /**
+                        * Fires before a plugin is deactivated.
+                        *
+                        * If a plugin is silently deactivated (such as during an update),
+                        * this hook does not fire.
+                        *
+                        * @since 2.9.0
+                        *
+                        * @param string $plugin               Plugin path to main plugin file with plugin data.
+                        * @param bool   $network_deactivating Whether the plugin is deactivated for all sites in the network
+                        *                                     or just the current site. Multisite only. Default is false.
+                        */
+                       do_action( 'deactivate_plugin', $plugin, $network_deactivating );
+               }
 
-               if ( ! $silent )
-                       do_action( 'deactivate_plugin', $plugin, $network_wide );
+               if ( false !== $network_wide ) {
+                       if ( is_plugin_active_for_network( $plugin ) ) {
+                               $do_network = true;
+                               unset( $network_current[ $plugin ] );
+                       } elseif ( $network_wide ) {
+                               continue;
+                       }
+               }
 
-               if ( $network_wide ) {
-                       $do_network = true;
-                       unset( $network_current[ $plugin ] );
-               } else {
+               if ( true !== $network_wide ) {
                        $key = array_search( $plugin, $current );
                        if ( false !== $key ) {
                                $do_blog = true;
-                               array_splice( $current, $key, 1 );
+                               unset( $current[ $key ] );
                        }
                }
 
                if ( ! $silent ) {
-                       do_action( 'deactivate_' . $plugin, $network_wide );
-                       do_action( 'deactivated_plugin', $plugin, $network_wide );
+                       /**
+                        * Fires as a specific plugin is being deactivated.
+                        *
+                        * This hook is the "deactivation" hook used internally by
+                        * register_deactivation_hook(). The dynamic portion of the
+                        * hook name, $plugin. refers to the plugin basename.
+                        *
+                        * If a plugin is silently deactivated (such as during an update),
+                        * this hook does not fire.
+                        *
+                        * @since 2.0.0
+                        *
+                        * @param bool $network_deactivating Whether the plugin is deactivated for all sites in the network
+                        *                                   or just the current site. Multisite only. Default is false.
+                        */
+                       do_action( 'deactivate_' . $plugin, $network_deactivating );
+
+                       /**
+                        * Fires after a plugin is deactivated.
+                        *
+                        * If a plugin is silently deactivated (such as during an update),
+                        * this hook does not fire.
+                        *
+                        * @since 2.9.0
+                        *
+                        * @param string $plugin               Plugin basename.
+                        * @param bool   $network_deactivating Whether the plugin is deactivated for all sites in the network
+                        *                                     or just the current site. Multisite only. Default false.
+                        */
+                       do_action( 'deactivated_plugin', $plugin, $network_deactivating );
                }
        }
 
@@ -702,7 +813,7 @@ function delete_plugins($plugins, $redirect = '' ) {
 
                $this_plugin_dir = trailingslashit( dirname($plugins_dir . $plugin_file) );
                // If plugin is in its own directory, recursively delete the directory.
-               if ( strpos($plugin_file, '/') && $this_plugin_dir != $plugins_dir ) //base check on if plugin includes directory separator AND that its not the root plugin folder
+               if ( strpos($plugin_file, '/') && $this_plugin_dir != $plugins_dir ) //base check on if plugin includes directory separator AND that it's not the root plugin folder
                        $deleted = $wp_filesystem->delete($this_plugin_dir, true);
                else
                        $deleted = $wp_filesystem->delete($plugins_dir . $plugin_file);
@@ -711,15 +822,21 @@ function delete_plugins($plugins, $redirect = '' ) {
                        $errors[] = $plugin_file;
        }
 
-       if ( ! empty($errors) )
-               return new WP_Error('could_not_remove_plugin', sprintf(__('Could not fully remove the plugin(s) %s.'), implode(', ', $errors)) );
-
-       // Force refresh of plugin update information
+       // Remove deleted plugins from the plugin updates list.
        if ( $current = get_site_transient('update_plugins') ) {
-               unset( $current->response[ $plugin_file ] );
-               set_site_transient('update_plugins', $current);
+               // Don't remove the plugins that weren't deleted.
+               $deleted = array_diff( $plugins, $errors );
+
+               foreach ( $deleted as $plugin_file ) {
+                       unset( $current->response[ $plugin_file ] );
+               }
+
+               set_site_transient( 'update_plugins', $current );
        }
 
+       if ( ! empty($errors) )
+               return new WP_Error('could_not_remove_plugin', sprintf(__('Could not fully remove the plugin(s) %s.'), implode(', ', $errors)) );
+
        return true;
 }
 
@@ -740,7 +857,7 @@ function validate_active_plugins() {
                $plugins = array();
        }
 
-       if ( is_multisite() && is_super_admin() ) {
+       if ( is_multisite() && current_user_can( 'manage_network_plugins' ) ) {
                $network_plugins = (array) get_site_option( 'active_sitewide_plugins', array() );
                $plugins = array_merge( $plugins, array_keys( $network_plugins ) );
        }
@@ -822,6 +939,7 @@ function uninstall_plugin($plugin) {
                unset($uninstallable_plugins);
 
                define('WP_UNINSTALL_PLUGIN', $file);
+               wp_register_plugin_realpath( WP_PLUGIN_DIR . '/' . dirname( $file ) );
                include WP_PLUGIN_DIR . '/' . dirname($file) . '/uninstall.php';
 
                return true;
@@ -833,9 +951,19 @@ function uninstall_plugin($plugin) {
                update_option('uninstall_plugins', $uninstallable_plugins);
                unset($uninstallable_plugins);
 
+               wp_register_plugin_realpath( WP_PLUGIN_DIR . '/' . $file );
                include WP_PLUGIN_DIR . '/' . $file;
 
                add_action( 'uninstall_' . $file, $callable );
+
+               /**
+                * Fires in uninstall_plugin() once the plugin has been uninstalled.
+                *
+                * The action concatenates the 'uninstall_' prefix with the basename of the
+                * plugin passed to {@see uninstall_plugin()} to create a dynamically-named action.
+                *
+                * @since 2.7.0
+                */
                do_action( 'uninstall_' . $file );
        }
 }
@@ -858,12 +986,16 @@ function uninstall_plugin($plugin) {
  * @param string $capability The capability required for this menu to be displayed to the user.
  * @param string $menu_slug The slug name to refer to this menu by (should be unique for this menu)
  * @param callback $function The function to be called to output the content for this page.
- * @param string $icon_url The url to the icon to be used for this menu
+ * @param string $icon_url The url to the icon to be used for this menu.
+ *     * Pass a base64-encoded SVG using a data URI, which will be colored to match the color scheme.
+ *       This should begin with 'data:image/svg+xml;base64,'.
+ *     * Pass the name of a Dashicons helper class to use a font icon, e.g. 'dashicons-chart-pie'.
+ *     * Pass 'none' to leave div.wp-menu-image empty so an icon can be added via CSS.
  * @param int $position The position in the menu order this one should appear
  *
  * @return string The resulting page's hook_suffix
  */
-function add_menu_page( $page_title, $menu_title, $capability, $menu_slug, $function = '', $icon_url = '', $position = NULL ) {
+function add_menu_page( $page_title, $menu_title, $capability, $menu_slug, $function = '', $icon_url = '', $position = null ) {
        global $menu, $admin_page_hooks, $_registered_pages, $_parent_pages;
 
        $menu_slug = plugin_basename( $menu_slug );
@@ -875,14 +1007,17 @@ function add_menu_page( $page_title, $menu_title, $capability, $menu_slug, $func
        if ( !empty( $function ) && !empty( $hookname ) && current_user_can( $capability ) )
                add_action( $hookname, $function );
 
-       if ( empty($icon_url) )
-               $icon_url = esc_url( admin_url( 'images/generic.png' ) );
-       elseif ( is_ssl() && 0 === strpos($icon_url, 'http://') )
-               $icon_url = 'https://' . substr($icon_url, 7);
+       if ( empty($icon_url) ) {
+               $icon_url = 'dashicons-admin-generic';
+               $icon_class = 'menu-icon-generic ';
+       } else {
+               $icon_url = set_url_scheme( $icon_url );
+               $icon_class = '';
+       }
 
-       $new_menu = array( $menu_title, $capability, $menu_slug, $page_title, 'menu-top ' . $hookname, $hookname, $icon_url );
+       $new_menu = array( $menu_title, $capability, $menu_slug, $page_title, 'menu-top ' . $icon_class . $hookname, $hookname, $icon_url );
 
-       if ( null === $position  )
+       if ( null === $position )
                $menu[] = $new_menu;
        else
                $menu[$position] = $new_menu;
@@ -985,10 +1120,10 @@ function add_submenu_page( $parent_slug, $page_title, $menu_title, $capability,
        }
 
        // If the parent doesn't already have a submenu, add a link to the parent
-       // as the first item in the submenu.  If the submenu file is the same as the
-       // parent file someone is trying to link back to the parent manually.  In
+       // as the first item in the submenu. If the submenu file is the same as the
+       // parent file someone is trying to link back to the parent manually. In
        // this case, don't automatically add a link back to avoid duplication.
-       if (!isset( $submenu[$parent_slug] ) && $menu_slug != $parent_slug  ) {
+       if (!isset( $submenu[$parent_slug] ) && $menu_slug != $parent_slug ) {
                foreach ( (array)$menu as $parent_menu ) {
                        if ( $parent_menu[2] == $parent_slug && current_user_can( $parent_menu[1] ) )
                                $submenu[$parent_slug][] = $parent_menu;
@@ -1002,7 +1137,7 @@ function add_submenu_page( $parent_slug, $page_title, $menu_title, $capability,
                add_action( $hookname, $function );
 
        $_registered_pages[$hookname] = true;
-       // backwards-compatibility for plugins using add_management page.  See wp-admin/admin.php for redirect from edit.php to tools.php
+       // backwards-compatibility for plugins using add_management page. See wp-admin/admin.php for redirect from edit.php to tools.php
        if ( 'tools.php' == $parent_slug )
                $_registered_pages[get_plugin_page_hookname( $menu_slug, 'edit.php')] = true;
 
@@ -1246,7 +1381,6 @@ function add_comments_page( $page_title, $menu_title, $capability, $menu_slug, $
        return add_submenu_page( 'edit-comments.php', $page_title, $menu_title, $capability, $menu_slug, $function );
 }
 
-
 /**
  * Remove a top level admin menu
  *
@@ -1298,7 +1432,7 @@ function remove_submenu_page( $menu_slug, $submenu_slug ) {
  *
  * If the slug hasn't been registered properly no url will be returned
  *
- * @since 3.0
+ * @since 3.0.0
  *
  * @param string $menu_slug The slug name to refer to this menu by (should be unique for this menu)
  * @param bool $echo Whether or not to echo the url - default is true
@@ -1347,15 +1481,6 @@ function get_admin_page_parent( $parent = '' ) {
                return $parent;
        }
 
-       /*
-       if ( !empty ( $parent_file ) ) {
-               if ( isset( $_wp_real_parent_file[$parent_file] ) )
-                       $parent_file = $_wp_real_parent_file[$parent_file];
-
-               return $parent_file;
-       }
-       */
-
        if ( $pagenow == 'admin.php' && isset( $plugin_page ) ) {
                foreach ( (array)$menu as $parent_menu ) {
                        if ( $parent_menu[2] == $plugin_page ) {
@@ -1589,7 +1714,7 @@ function user_can_access_admin_page() {
  *
  * @since 2.7.0
  *
- * @param string $option_group A settings group name.  Should correspond to a whitelisted option key name.
+ * @param string $option_group A settings group name. Should correspond to a whitelisted option key name.
  *     Default whitelisted option key names include "general," "discussion," and "reading," among others.
  * @param string $option_name The name of an option to sanitize and save.
  * @param unknown_type $sanitize_callback A callback function that sanitizes the option's value.
@@ -1599,10 +1724,15 @@ function register_setting( $option_group, $option_name, $sanitize_callback = ''
        global $new_whitelist_options;
 
        if ( 'misc' == $option_group ) {
-               _deprecated_argument( __FUNCTION__, '3.0', __( 'The miscellaneous options group has been removed. Use another settings group.' ) );
+               _deprecated_argument( __FUNCTION__, '3.0', sprintf( __( 'The "%s" options group has been removed. Use another settings group.' ), 'misc' ) );
                $option_group = 'general';
        }
 
+       if ( 'privacy' == $option_group ) {
+               _deprecated_argument( __FUNCTION__, '3.5', sprintf( __( 'The "%s" options group has been removed. Use another settings group.' ), 'privacy' ) );
+               $option_group = 'reading';
+       }
+
        $new_whitelist_options[ $option_group ][] = $option_name;
        if ( $sanitize_callback != '' )
                add_filter( "sanitize_option_{$option_name}", $sanitize_callback );
@@ -1622,10 +1752,15 @@ function unregister_setting( $option_group, $option_name, $sanitize_callback = '
        global $new_whitelist_options;
 
        if ( 'misc' == $option_group ) {
-               _deprecated_argument( __FUNCTION__, '3.0', __( 'The miscellaneous options group has been removed. Use another settings group.' ) );
+               _deprecated_argument( __FUNCTION__, '3.0', sprintf( __( 'The "%s" options group has been removed. Use another settings group.' ), 'misc' ) );
                $option_group = 'general';
        }
 
+       if ( 'privacy' == $option_group ) {
+               _deprecated_argument( __FUNCTION__, '3.5', sprintf( __( 'The "%s" options group has been removed. Use another settings group.' ), 'privacy' ) );
+               $option_group = 'reading';
+       }
+
        $pos = array_search( $option_name, (array) $new_whitelist_options );
        if ( $pos !== false )
                unset( $new_whitelist_options[ $option_group ][ $pos ] );
@@ -1715,7 +1850,7 @@ function remove_option_whitelist( $del_options, $options = '' ) {
  *
  * @since 2.7.0
  *
- * @param string $option_group A settings group name.  This should match the group name used in register_setting().
+ * @param string $option_group A settings group name. This should match the group name used in register_setting().
  */
 function settings_fields($option_group) {
        echo "<input type='hidden' name='option_page' value='" . esc_attr($option_group) . "' />";
@@ -1723,4 +1858,15 @@ function settings_fields($option_group) {
        wp_nonce_field("$option_group-options");
 }
 
-?>
+/**
+ * Clears the Plugins cache used by get_plugins() and by default, the Plugin Update cache.
+ *
+ * @since 3.7.0
+ *
+ * @param bool $clear_update_cache Whether to clear the Plugin updates cache
+ */
+function wp_clean_plugins_cache( $clear_update_cache = true ) {
+       if ( $clear_update_cache )
+               delete_site_transient( 'update_plugins' );
+       wp_cache_delete( 'plugins', 'plugins' );
+}