mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-03 01:09:39 +01:00
70fd806759
These commits were accidentally re-synced commits from develop.svn.wordpress.org due to a race condition. Thankfully, the history of this repository matters fairly little. It also happened only for trunk. git-svn-id: http://core.svn.wordpress.org/trunk@25876 1a063a9b-81f0-0310-95a4-ce76da25c4cd
91 lines
2.1 KiB
PHP
91 lines
2.1 KiB
PHP
<?php
|
|
/**
|
|
* WordPress Administration Template Footer
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Administration
|
|
*/
|
|
|
|
// don't load directly
|
|
if ( !defined('ABSPATH') )
|
|
die('-1');
|
|
?>
|
|
|
|
<div class="clear"></div></div><!-- wpbody-content -->
|
|
<div class="clear"></div></div><!-- wpbody -->
|
|
<div class="clear"></div></div><!-- wpcontent -->
|
|
|
|
<div id="wpfooter">
|
|
<?php
|
|
/**
|
|
* Fires after the opening tag for the admin footer.
|
|
*
|
|
* @since 2.5.0
|
|
*/
|
|
do_action( 'in_admin_footer' );
|
|
?>
|
|
<p id="footer-left" class="alignleft">
|
|
<?php
|
|
/**
|
|
* Filter the "Thank you" text displayed in the admin footer.
|
|
*
|
|
* @since 2.8.0
|
|
* @param string The content that will be printed.
|
|
*/
|
|
echo apply_filters( 'admin_footer_text', '<span id="footer-thankyou">' . __( 'Thank you for creating with <a href="http://wordpress.org/">WordPress</a>.' ) . '</span>' );
|
|
?>
|
|
</p>
|
|
<p id="footer-upgrade" class="alignright">
|
|
<?php
|
|
/**
|
|
* Filter the version/update text displayed in the admin footer.
|
|
*
|
|
* @see core_update_footer() WordPress prints the current version and update information,
|
|
* using core_update_footer() at priority 10.
|
|
*
|
|
* @since 2.3.0
|
|
* @param string The content that will be printed.
|
|
*/
|
|
echo apply_filters( 'update_footer', '' );
|
|
?>
|
|
</p>
|
|
<div class="clear"></div>
|
|
</div>
|
|
<?php
|
|
/**
|
|
* 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();
|
|
}
|
|
|
|
?>
|
|
|
|
<div class="clear"></div></div><!-- wpwrap -->
|
|
<script type="text/javascript">if(typeof wpOnload=='function')wpOnload();</script>
|
|
</body>
|
|
</html>
|