root/trunk/wp-admin/admin-footer.php

Revision 1519, 0.9 kB (checked in by donncha, 6 days ago)

WP Merge

  • Property svn:eol-style set to native
Line 
1 <?php
2 /**
3  * WordPress Administration Template Footer
4  *
5  * @package WordPress
6  * @subpackage Administration
7  */
8 ?>
9
10 <div class="clear" /></div></div><!-- wpbody-content -->
11 </div><!-- wpbody -->
12 <div class="clear" /></div></div><!-- wpcontent -->
13 </div><!-- wpwrap -->
14
15 <div id="footer">
16 <p><?php
17 do_action( 'in_admin_footer' );
18 $upgrade = '';
19 $footer_text = __('Thank you for creating with <a href="http://mu.wordpress.org/">WordPress MU</a>');
20 if( is_site_admin() ) {
21     $upgrade = apply_filters( 'update_footer', '' );
22     $footer_text .= ' ' . $wpmu_version;
23 }
24 $footer_text .= ' | ' . __('<a href="http://mu.wordpress.org/docs/">Documentation</a>');
25 echo apply_filters( 'admin_footer_text', $footer_text ) . ' ' . $upgrade;
26 ?></p>
27 </div>
28 <?php do_action('admin_footer', ''); ?>
29 <script type="text/javascript">if(typeof wpOnload=='function')wpOnload();</script>
30 </body>
31 </html>
32
Note: See TracBrowser for help on using the browser.