X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/022dfbbbe3215917d84708eb09acca93b21ae9e0..4713a14935b83517997f3c88f808eb41da55033d:/wp-admin/admin-footer.php diff --git a/wp-admin/admin-footer.php b/wp-admin/admin-footer.php index 88e69ae4..0619c862 100644 --- a/wp-admin/admin-footer.php +++ b/wp-admin/admin-footer.php @@ -1,19 +1,99 @@ +

-

-
- -

+// don't load directly +if ( !defined('ABSPATH') ) + die('-1'); +?> - - - +
+
+
+ '; +/** + * Print scripts or data before the default footer scripts. + * + * @since 1.2.0 + * + * @param string $data The data to print. + */ +do_action( 'admin_footer', '' ); + +/** + * Prints any scripts and data queued for the footer. + * + * @since 2.8.0 + */ +do_action( 'admin_print_footer_scripts' ); + +/** + * Print scripts or data after the default footer scripts. + * + * The dynamic portion of the hook name, $GLOBALS['hook_suffix'], + * refers to the global hook suffix of the current page. + * + * @since 2.8.0 + * + * @param string $hook_suffix The current admin page. + */ +do_action( "admin_footer-" . $GLOBALS['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(); } + ?> +
+