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
|
|
|
|
2020-01-28 19:45:18 -05:00
|
|
|
// Don't load directly.
|
2017-11-30 18:11:00 -05:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
|
|
die( '-1' );
|
|
|
|
}
|
2016-04-21 11:17:27 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @global string $hook_suffix
|
|
|
|
*/
|
|
|
|
global $hook_suffix;
|
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
|
|
|
|
2015-04-01 09:17:27 -04:00
|
|
|
<div id="wpfooter" role="contentinfo">
|
2013-09-05 12:21:09 -04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Fires after the opening tag for the admin footer.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
2013-10-24 22:29:52 -04:00
|
|
|
*/
|
|
|
|
do_action( 'in_admin_footer' );
|
2013-09-05 12:21:09 -04:00
|
|
|
?>
|
|
|
|
<p id="footer-left" class="alignleft">
|
|
|
|
<?php
|
2019-09-01 20:43:55 -04:00
|
|
|
$text = sprintf(
|
|
|
|
/* translators: %s: https://wordpress.org/ */
|
|
|
|
__( 'Thank you for creating with <a href="%s">WordPress</a>.' ),
|
2024-09-26 11:41:14 -04:00
|
|
|
esc_url( __( 'https://wordpress.org/' ) )
|
2019-09-01 20:43:55 -04:00
|
|
|
);
|
|
|
|
|
2013-09-05 12:21:09 -04:00
|
|
|
/**
|
2016-05-22 14:01:30 -04:00
|
|
|
* Filters the "Thank you" text displayed in the admin footer.
|
2013-10-24 22:29:52 -04:00
|
|
|
*
|
2013-09-05 12:21:09 -04:00
|
|
|
* @since 2.8.0
|
2014-02-09 15:28:12 -05:00
|
|
|
*
|
|
|
|
* @param string $text The content that will be printed.
|
2013-10-24 22:29:52 -04:00
|
|
|
*/
|
2014-03-07 23:14:15 -05:00
|
|
|
echo apply_filters( 'admin_footer_text', '<span id="footer-thankyou">' . $text . '</span>' );
|
2013-09-05 12:21:09 -04:00
|
|
|
?>
|
|
|
|
</p>
|
|
|
|
<p id="footer-upgrade" class="alignright">
|
|
|
|
<?php
|
|
|
|
/**
|
2016-05-22 14:01:30 -04:00
|
|
|
* Filters the version/update text displayed in the admin footer.
|
2013-09-05 12:21:09 -04:00
|
|
|
*
|
2014-02-09 15:28:12 -05:00
|
|
|
* WordPress prints the current version and update information,
|
|
|
|
* using core_update_footer() at priority 10.
|
2013-10-24 22:29:52 -04:00
|
|
|
*
|
2013-09-06 13:38:09 -04:00
|
|
|
* @since 2.3.0
|
2014-02-09 15:28:12 -05:00
|
|
|
*
|
|
|
|
* @see core_update_footer()
|
|
|
|
*
|
|
|
|
* @param string $content The content that will be printed.
|
2013-09-05 12:21:09 -04:00
|
|
|
*/
|
2013-10-24 22:29:52 -04:00
|
|
|
echo apply_filters( 'update_footer', '' );
|
2013-09-05 12:21:09 -04:00
|
|
|
?>
|
|
|
|
</p>
|
|
|
|
<div class="clear"></div>
|
2004-07-23 03:50:21 -04:00
|
|
|
</div>
|
2009-01-14 09:18:51 -05:00
|
|
|
<?php
|
2013-09-05 12:21:09 -04:00
|
|
|
/**
|
2016-05-25 12:05:27 -04:00
|
|
|
* Prints scripts or data before the default footer scripts.
|
2013-10-24 22:29:52 -04:00
|
|
|
*
|
2013-09-06 13:38:09 -04:00
|
|
|
* @since 1.2.0
|
2014-02-09 15:28:12 -05:00
|
|
|
*
|
|
|
|
* @param string $data The data to print.
|
2013-09-05 12:21:09 -04:00
|
|
|
*/
|
2014-02-09 15:28:12 -05:00
|
|
|
do_action( 'admin_footer', '' );
|
2013-09-05 12:21:09 -04:00
|
|
|
|
2016-04-21 11:17:27 -04:00
|
|
|
/**
|
|
|
|
* Prints scripts and data queued for the footer.
|
|
|
|
*
|
|
|
|
* The dynamic portion of the hook name, `$hook_suffix`,
|
|
|
|
* refers to the global hook suffix of the current page.
|
|
|
|
*
|
|
|
|
* @since 4.6.0
|
|
|
|
*/
|
2019-07-04 21:45:56 -04:00
|
|
|
do_action( "admin_print_footer_scripts-{$hook_suffix}" ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
|
2016-04-21 11:17:27 -04:00
|
|
|
|
2013-09-05 12:21:09 -04:00
|
|
|
/**
|
2013-09-05 21:38:09 -04:00
|
|
|
* Prints any scripts and data queued for the footer.
|
2013-10-24 22:29:52 -04:00
|
|
|
*
|
2013-09-05 12:21:09 -04:00
|
|
|
* @since 2.8.0
|
|
|
|
*/
|
2014-02-09 15:28:12 -05:00
|
|
|
do_action( 'admin_print_footer_scripts' );
|
2013-09-05 12:21:09 -04:00
|
|
|
|
|
|
|
/**
|
2016-05-25 12:05:27 -04:00
|
|
|
* Prints scripts or data after the default footer scripts.
|
2013-10-24 22:29:52 -04:00
|
|
|
*
|
2016-04-21 11:17:27 -04:00
|
|
|
* The dynamic portion of the hook name, `$hook_suffix`,
|
2014-02-09 15:28:12 -05:00
|
|
|
* refers to the global hook suffix of the current page.
|
|
|
|
*
|
2013-09-05 21:38:09 -04:00
|
|
|
* @since 2.8.0
|
2013-09-05 12:21:09 -04:00
|
|
|
*/
|
2019-07-04 21:45:56 -04:00
|
|
|
do_action( "admin_footer-{$hook_suffix}" ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
|
2009-01-14 09:18:51 -05:00
|
|
|
|
2020-01-28 19:45:18 -05:00
|
|
|
// get_site_option() won't exist when auto upgrading from <= 2.7.
|
2021-06-01 07:30:57 -04:00
|
|
|
if ( function_exists( 'get_site_option' )
|
|
|
|
&& false === get_site_option( 'can_compress_scripts' )
|
|
|
|
) {
|
|
|
|
compression_test();
|
2009-05-16 01:05:11 -04:00
|
|
|
}
|
|
|
|
|
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 -->
|
2021-03-18 10:13:08 -04: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>
|