Changeset 27145
- Timestamp:
- 02/09/2014 08:28:01 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/admin-footer.php
r25880 r27145 31 31 * 32 32 * @since 2.8.0 33 * @param string The content that will be printed. 33 * 34 * @param string $text The content that will be printed. 34 35 */ 35 36 echo apply_filters( 'admin_footer_text', '<span id="footer-thankyou">' . __( 'Thank you for creating with <a href="http://wordpress.org/">WordPress</a>.' ) . '</span>' ); … … 41 42 * Filter the version/update text displayed in the admin footer. 42 43 * 43 * @see core_update_footer()WordPress prints the current version and update information,44 * 44 * WordPress prints the current version and update information, 45 * using core_update_footer() at priority 10. 45 46 * 46 47 * @since 2.3.0 47 * @param string The content that will be printed. 48 * 49 * @see core_update_footer() 50 * 51 * @param string $content The content that will be printed. 48 52 */ 49 53 echo apply_filters( 'update_footer', '' ); … … 57 61 * 58 62 * @since 1.2.0 59 * @param string The data to print. 63 * 64 * @param string $data The data to print. 60 65 */ 61 do_action( 'admin_footer', '');66 do_action( 'admin_footer', '' ); 62 67 63 68 /** … … 66 71 * @since 2.8.0 67 72 */ 68 do_action( 'admin_print_footer_scripts');73 do_action( 'admin_print_footer_scripts' ); 69 74 70 75 /** 71 76 * Print scripts or data after the default footer scripts. 72 77 * 78 * The dynamic portion of the hook name, $GLOBALS['hook_suffix'], 79 * refers to the global hook suffix of the current page. 80 * 73 81 * @since 2.8.0 74 82 * 75 * @param string $ GLOBALS['hook_suffix']The current admin page.83 * @param string $hook_suffix The current admin page. 76 84 */ 77 do_action( "admin_footer-" . $GLOBALS['hook_suffix']);85 do_action( "admin_footer-" . $GLOBALS['hook_suffix'] ); 78 86 79 87 // get_site_option() won't exist when auto upgrading from <= 2.7
Note: See TracChangeset
for help on using the changeset viewer.