]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/admin-footer.php
WordPress 3.7-scripts
[autoinstalls/wordpress.git] / wp-admin / admin-footer.php
index a43a4e459b3e9039c31fc8540d7af5d07db93804..08d9debc9b4c34b4b2369a323178f8bfeefb600a 100644 (file)
@@ -14,22 +14,67 @@ if ( !defined('ABSPATH') )
 <div class="clear"></div></div><!-- wpbody-content -->
 <div class="clear"></div></div><!-- wpbody -->
 <div class="clear"></div></div><!-- wpcontent -->
-</div><!-- wpwrap -->
-
-<div id="footer">
-<p id="footer-left" class="alignleft"><?php
-do_action( 'in_admin_footer' );
-$upgrade = apply_filters( 'update_footer', '' );
-echo apply_filters( 'admin_footer_text', '<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>').' | '.__('<a href="http://wordpress.org/support/forum/4">Feedback</a>') ); ?>
-</p>
-<?php // if ( $is_IE ) browse_happy(); ?>
-<p id="footer-upgrade" class="alignright"><?php echo $upgrade; ?></p>
-<div class="clear"></div>
+
+<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');
-do_action("admin_footer-$hook_suffix");
+
+/**
+ * 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') ) {
@@ -39,6 +84,7 @@ if ( function_exists('get_site_option') ) {
 
 ?>
 
+<div class="clear"></div></div><!-- wpwrap -->
 <script type="text/javascript">if(typeof wpOnload=='function')wpOnload();</script>
 </body>
 </html>