X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/784f914b1e4b1c62d6657e86397c2e83bcee4295..febc815b2c9d85be5717da9e8d164bd2daa97e31:/wp-admin/includes/plugin.php diff --git a/wp-admin/includes/plugin.php b/wp-admin/includes/plugin.php index 25f68287..cf6b4bab 100644 --- a/wp-admin/includes/plugin.php +++ b/wp-admin/includes/plugin.php @@ -86,12 +86,20 @@ function get_plugin_data( $plugin_file, $markup = true, $translate = true ) { // Site Wide Only is the old header for Network if ( ! $plugin_data['Network'] && $plugin_data['_sitewide'] ) { /* translators: 1: Site Wide Only: true, 2: Network: true */ - _deprecated_argument( __FUNCTION__, '3.0', sprintf( __( 'The %1$s plugin header is deprecated. Use %2$s instead.' ), 'Site Wide Only: true', 'Network: true' ) ); + _deprecated_argument( __FUNCTION__, '3.0.0', sprintf( __( 'The %1$s plugin header is deprecated. Use %2$s 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'] ); + // If no text domain is defined fall back to the plugin slug. + if ( ! $plugin_data['TextDomain'] ) { + $plugin_slug = dirname( plugin_basename( $plugin_file ) ); + if ( '.' !== $plugin_slug && false === strpos( $plugin_slug, '/' ) ) { + $plugin_data['TextDomain'] = $plugin_slug; + } + } + if ( $markup || $translate ) { $plugin_data = _get_plugin_data_markup_translate( $plugin_file, $plugin_data, $markup, $translate ); } else { @@ -487,7 +495,7 @@ function is_plugin_active_for_network( $plugin ) { * be activated only as a network wide plugin. The plugin would also work * when Multisite is not enabled. * - * Checks for "Site Wide Only: true" for backwards compatibility. + * Checks for "Site Wide Only: true" for backward compatibility. * * @since 3.0.0 * @@ -570,12 +578,10 @@ function activate_plugin( $plugin, $redirect = '', $network_wide = false, $silen /** * Fires as a specific plugin is being activated. * - * This hook is the "activation" hook used internally by - * {@see register_activation_hook()}. The dynamic portion of the - * hook name, `$plugin`, refers to the plugin basename. + * This hook is the "activation" hook used internally by register_activation_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. + * If a plugin is silently activated (such as during an update), this hook does not fire. * * @since 2.0.0 * @@ -685,12 +691,10 @@ function deactivate_plugins( $plugins, $silent = false, $network_wide = null ) { /** * Fires as a specific plugin is being deactivated. * - * This hook is the "deactivation" hook used internally by - * {@see register_deactivation_hook()}. The dynamic portion of the - * hook name, `$plugin`, refers to the plugin basename. + * 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. + * If a plugin is silently deactivated (such as during an update), this hook does not fire. * * @since 2.0.0 * @@ -778,11 +782,13 @@ function delete_plugins( $plugins, $deprecated = '' ) { foreach ( $plugins as $plugin ) $checked[] = 'checked[]=' . $plugin; - ob_start(); $url = wp_nonce_url('plugins.php?action=delete-selected&verify-delete=1&' . implode('&', $checked), 'bulk-plugins'); - if ( false === ($credentials = request_filesystem_credentials($url)) ) { - $data = ob_get_clean(); + ob_start(); + $credentials = request_filesystem_credentials( $url ); + $data = ob_get_clean(); + + if ( false === $credentials ) { if ( ! empty($data) ){ include_once( ABSPATH . 'wp-admin/admin-header.php'); echo $data; @@ -792,8 +798,9 @@ function delete_plugins( $plugins, $deprecated = '' ) { return; } - if ( ! WP_Filesystem($credentials) ) { - request_filesystem_credentials($url, '', true); //Failed to connect, Error and request again + if ( ! WP_Filesystem( $credentials ) ) { + ob_start(); + request_filesystem_credentials( $url, '', true ); // Failed to connect, Error and request again. $data = ob_get_clean(); if ( ! empty($data) ){ @@ -814,7 +821,7 @@ function delete_plugins( $plugins, $deprecated = '' ) { // Get the base plugin folder. $plugins_dir = $wp_filesystem->wp_plugins_dir(); if ( empty( $plugins_dir ) ) { - return new WP_Error( 'fs_no_plugins_dir', __( 'Unable to locate WordPress Plugin directory.' ) ); + return new WP_Error( 'fs_no_plugins_dir', __( 'Unable to locate WordPress plugin directory.' ) ); } $plugins_dir = trailingslashit( $plugins_dir ); @@ -933,11 +940,11 @@ function validate_active_plugins() { /** * Validate the plugin path. * - * Checks that the file exists and {@link validate_file() is valid file}. + * Checks that the file exists and is a valid file. See validate_file(). * * @since 2.5.0 * - * @param string $plugin Plugin Path + * @param string $plugin Plugin Path. * @return WP_Error|int 0 on success, WP_Error on failure. */ function validate_plugin($plugin) { @@ -1003,7 +1010,7 @@ function uninstall_plugin($plugin) { unset($uninstallable_plugins); define('WP_UNINSTALL_PLUGIN', $file); - wp_register_plugin_realpath( WP_PLUGIN_DIR . '/' . dirname( $file ) ); + wp_register_plugin_realpath( WP_PLUGIN_DIR . '/' . $file ); include( WP_PLUGIN_DIR . '/' . dirname($file) . '/uninstall.php' ); return true; @@ -1024,7 +1031,7 @@ function uninstall_plugin($plugin) { * 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. + * plugin passed to uninstall_plugin() to create a dynamically-named action. * * @since 2.7.0 */ @@ -1773,12 +1780,12 @@ function register_setting( $option_group, $option_name, $sanitize_callback = '' global $new_whitelist_options; if ( 'misc' == $option_group ) { - _deprecated_argument( __FUNCTION__, '3.0', sprintf( __( 'The "%s" options group has been removed. Use another settings group.' ), 'misc' ) ); + _deprecated_argument( __FUNCTION__, '3.0.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' ) ); + _deprecated_argument( __FUNCTION__, '3.5.0', sprintf( __( 'The "%s" options group has been removed. Use another settings group.' ), 'privacy' ) ); $option_group = 'reading'; } @@ -1802,12 +1809,12 @@ function unregister_setting( $option_group, $option_name, $sanitize_callback = ' global $new_whitelist_options; if ( 'misc' == $option_group ) { - _deprecated_argument( __FUNCTION__, '3.0', sprintf( __( 'The "%s" options group has been removed. Use another settings group.' ), 'misc' ) ); + _deprecated_argument( __FUNCTION__, '3.0.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' ) ); + _deprecated_argument( __FUNCTION__, '3.5.0', sprintf( __( 'The "%s" options group has been removed. Use another settings group.' ), 'privacy' ) ); $option_group = 'reading'; } @@ -1819,7 +1826,9 @@ function unregister_setting( $option_group, $option_name, $sanitize_callback = ' } /** - * Refreshes the value of the options whitelist available via the 'whitelist_options' filter. + * Refreshes the value of the options whitelist available via the 'whitelist_options' hook. + * + * See the {@see 'whitelist_options'} filter. * * @since 2.7.0 *