2008-08-11 16:26:31 -04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* WordPress Administration Template Footer
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Administration
|
|
|
|
*/
|
2009-08-02 20:04:45 -04:00
|
|
|
|
|
|
|
// don't load directly
|
|
|
|
if ( !defined('ABSPATH') )
|
|
|
|
die('-1');
|
2008-08-20 22:25:14 -04:00
|
|
|
?>
|
2008-08-20 17:42:31 -04:00
|
|
|
|
2008-11-21 12:55:35 -05:00
|
|
|
<div class="clear"></div></div><!-- wpbody-content -->
|
2008-11-27 23:33:35 -05:00
|
|
|
<div class="clear"></div></div><!-- wpbody -->
|
2008-11-21 12:55:35 -05:00
|
|
|
<div class="clear"></div></div><!-- wpcontent -->
|
2008-08-31 09:51:52 -04:00
|
|
|
|
2006-09-28 13:35:59 -04:00
|
|
|
<div id="footer">
|
2011-06-05 08:04:19 -04:00
|
|
|
<?php do_action( 'in_admin_footer' ); ?>
|
2008-11-23 19:20:34 -05:00
|
|
|
<p id="footer-left" class="alignleft"><?php
|
2007-08-17 06:33:52 -04:00
|
|
|
$upgrade = apply_filters( 'update_footer', '' );
|
2011-05-11 21:45:42 -04:00
|
|
|
$footer_text = array(
|
|
|
|
'<span id="footer-thankyou">' . __( 'Thank you for creating with <a href="http://wordpress.org/">WordPress</a>.' ) . '</span>',
|
|
|
|
);
|
|
|
|
echo apply_filters( 'admin_footer_text', implode( ' • ', $footer_text ) );
|
|
|
|
unset( $footer_text );
|
|
|
|
?></p>
|
2008-11-23 19:20:34 -05:00
|
|
|
<p id="footer-upgrade" class="alignright"><?php echo $upgrade; ?></p>
|
|
|
|
<div class="clear"></div>
|
2004-07-23 03:50:21 -04:00
|
|
|
</div>
|
2009-01-14 09:18:51 -05:00
|
|
|
<?php
|
|
|
|
do_action('admin_footer', '');
|
|
|
|
do_action('admin_print_footer_scripts');
|
2010-03-03 02:43:32 -05:00
|
|
|
do_action("admin_footer-" . $GLOBALS['hook_suffix']);
|
2009-01-14 09:18:51 -05:00
|
|
|
|
2009-05-16 01:05:11 -04: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 09:18:51 -05:00
|
|
|
?>
|
2009-01-14 19:08:20 -05:00
|
|
|
|
2011-05-11 16:27:59 -04:00
|
|
|
<div class="clear"></div></div><!-- wpwrap -->
|
2005-12-14 01:27:30 -05:00
|
|
|
<script type="text/javascript">if(typeof wpOnload=='function')wpOnload();</script>
|
2003-05-22 08:12:53 -04:00
|
|
|
</body>
|
2009-01-14 09:18:51 -05:00
|
|
|
</html>
|