X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/022dfbbbe3215917d84708eb09acca93b21ae9e0..fa11948979fd6a4ea5705dc613b239699a459db3:/wp-admin/admin-footer.php diff --git a/wp-admin/admin-footer.php b/wp-admin/admin-footer.php index 88e69ae4..08d9debc 100644 --- a/wp-admin/admin-footer.php +++ b/wp-admin/admin-footer.php @@ -1,19 +1,90 @@ +

-

-
- -

+// don't load directly +if ( !defined('ABSPATH') ) + die('-1'); +?> - - - +
+
+
+ '; +/** + * Print scripts or data before the default footer scripts. + * + * @since 1.2.0 + * @param string 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. + * + * @since 2.8.0 + * + * @param string $GLOBALS['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(); } + ?> +
+