X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/0f29eadd474473203a1182f52af1aa82721cecbd..e3ff8f35458a959c1879c0a4976701ed8dcfe651:/wp-admin/admin-footer.php diff --git a/wp-admin/admin-footer.php b/wp-admin/admin-footer.php index 88e69ae4..111d4d23 100644 --- a/wp-admin/admin-footer.php +++ b/wp-admin/admin-footer.php @@ -1,19 +1,119 @@ +

-

-
- -

+// don't load directly +if ( !defined('ABSPATH') ) + die('-1'); - - - +/** + * @global string $hook_suffix + */ +global $hook_suffix; +?> + +
+
+
+ '; +/** + * Prints scripts or data before the default footer scripts. + * + * @since 1.2.0 + * + * @param string $data The data to print. + */ +do_action( 'admin_footer', '' ); + +/** + * Prints scripts and data queued for the footer. + * + * The dynamic portion of the hook name, `$hook_suffix`, + * refers to the global hook suffix of the current page. + * + * @since 4.6.0 + * + * @global string $hook_suffix + * + * @param string $hook_suffix The current admin page. + */ +do_action( "admin_print_footer_scripts-{$hook_suffix}" ); + +/** + * Prints any scripts and data queued for the footer. + * + * @since 2.8.0 + */ +do_action( 'admin_print_footer_scripts' ); + +/** + * Prints scripts or data after the default footer scripts. + * + * The dynamic portion of the hook name, `$hook_suffix`, + * refers to the global hook suffix of the current page. + * + * @since 2.8.0 + * + * @global string $hook_suffix + * @param string $hook_suffix The current admin page. + */ +do_action( "admin_footer-{$hook_suffix}" ); + +// get_site_option() won't exist when auto upgrading from <= 2.7 +if ( function_exists('get_site_option') ) { + if ( false === get_site_option('can_compress_scripts') ) + compression_test(); } + ?> +
+