2008-08-11 20:26:31 +00:00
< ? php
/**
* WordPress Administration Template Footer
*
* @ package WordPress
* @ subpackage Administration
*/
2009-08-03 00:04:45 +00:00
// don't load directly
if ( ! defined ( 'ABSPATH' ) )
die ( '-1' );
2008-08-21 02:25:14 +00:00
?>
2008-08-20 21:42:31 +00:00
2008-11-21 17:55:35 +00:00
< div class = " clear " ></ div ></ div ><!-- wpbody - content -->
2008-11-28 04:33:35 +00:00
< div class = " clear " ></ div ></ div ><!-- wpbody -->
2008-11-21 17:55:35 +00:00
< div class = " clear " ></ div ></ div ><!-- wpcontent -->
2008-08-31 13:51:52 +00:00
2012-09-16 23:03:35 +00:00
< div id = " wpfooter " >
2013-09-05 16:21:09 +00:00
< ? 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
/**
2013-09-06 01:38:09 +00:00
* Filter the " Thank you " text displayed in the admin footer .
2013-09-05 16:21:09 +00:00
*
* @ 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
/**
2013-09-06 01:38:09 +00:00
* Filter the version / update text displayed in the admin footer .
2013-09-05 16:21:09 +00:00
*
* @ see core_update_footer () WordPress prints the current version and update information ,
* using core_update_footer () at priority 10.
*
2013-09-06 17:38:09 +00:00
* @ since 2.3 . 0
2013-09-05 16:21:09 +00:00
* @ param string The content that will be printed .
*/
echo apply_filters ( 'update_footer' , '' );
?>
</ p >
< div class = " clear " ></ div >
2004-07-23 07:50:21 +00:00
</ div >
2009-01-14 14:18:51 +00:00
< ? php
2013-09-05 16:21:09 +00:00
/**
2013-09-06 01:38:09 +00:00
* Print scripts or data before the default footer scripts .
2013-09-05 16:21:09 +00:00
*
2013-09-06 17:38:09 +00:00
* @ since 1.2 . 0
2013-09-05 16:21:09 +00:00
* @ param string The data to print .
*/
2009-01-14 14:18:51 +00:00
do_action ( 'admin_footer' , '' );
2013-09-05 16:21:09 +00:00
/**
2013-09-06 01:38:09 +00:00
* Prints any scripts and data queued for the footer .
2013-09-05 16:21:09 +00:00
*
* @ since 2.8 . 0
*/
2009-01-14 14:18:51 +00:00
do_action ( 'admin_print_footer_scripts' );
2013-09-05 16:21:09 +00:00
/**
2013-09-06 01:38:09 +00:00
* Print scripts or data after the default footer scripts .
2013-09-05 16:21:09 +00:00
*
2013-09-06 01:38:09 +00:00
* @ since 2.8 . 0
2013-09-05 16:21:09 +00:00
*
2013-09-06 01:38:09 +00:00
* @ param string $GLOBALS [ 'hook_suffix' ] The current admin page .
2013-09-05 16:21:09 +00:00
*/
2010-03-03 07:43:32 +00:00
do_action ( " admin_footer- " . $GLOBALS [ 'hook_suffix' ]);
2009-01-14 14:18:51 +00:00
2009-05-16 05:05:11 +00:00
// 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 ();
}
2009-01-14 14:18:51 +00:00
?>
2009-01-15 00:08:20 +00:00
2011-05-11 20:27:59 +00:00
< div class = " clear " ></ div ></ div ><!-- wpwrap -->
2005-12-14 06:27:30 +00:00
< script type = " text/javascript " > if ( typeof wpOnload == 'function' ) wpOnload (); </ script >
2003-05-22 12:12:53 +00:00
</ body >
2009-01-14 14:18:51 +00:00
</ html >