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