IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
|
| 9 | 9 | // don't load directly |
| 10 | 10 | if ( !defined('ABSPATH') ) |
| 11 | 11 | die('-1'); |
| | 12 | |
| | 13 | global $hook_suffix; |
| 12 | 14 | ?> |
| 13 | 15 | |
| 14 | 16 | <div class="clear"></div></div><!-- wpbody-content --> |
| … |
… |
|
| 67 | 69 | do_action( 'admin_footer', '' ); |
| 68 | 70 | |
| 69 | 71 | /** |
| | 72 | * Prints scripts and data queued for the footer. |
| | 73 | * |
| | 74 | * The dynamic portion of the hook name, `$hook_suffix`, |
| | 75 | * refers to the global hook suffix of the current page. |
| | 76 | * |
| | 77 | * @since 4.5.0 |
| | 78 | * |
| | 79 | * @global string $hook_suffix |
| | 80 | * @param string $hook_suffix The current admin page. |
| | 81 | */ |
| | 82 | do_action( "admin_print_footer_scripts-$hook_suffix" ); |
| | 83 | |
| | 84 | /** |
| 70 | 85 | * Prints any scripts and data queued for the footer. |
| 71 | 86 | * |
| 72 | 87 | * @since 2.8.0 |
| … |
… |
|
| 76 | 91 | /** |
| 77 | 92 | * Print scripts or data after the default footer scripts. |
| 78 | 93 | * |
| 79 | | * The dynamic portion of the hook name, `$GLOBALS['hook_suffix']`, |
| | 94 | * The dynamic portion of the hook name, `$hook_suffix`, |
| 80 | 95 | * refers to the global hook suffix of the current page. |
| 81 | 96 | * |
| 82 | 97 | * @since 2.8.0 |
| … |
… |
|
| 84 | 99 | * @global string $hook_suffix |
| 85 | 100 | * @param string $hook_suffix The current admin page. |
| 86 | 101 | */ |
| 87 | | do_action( "admin_footer-" . $GLOBALS['hook_suffix'] ); |
| | 102 | do_action( "admin_footer-$hook_suffix" ); |
| 88 | 103 | |
| 89 | 104 | // get_site_option() won't exist when auto upgrading from <= 2.7 |
| 90 | 105 | if ( function_exists('get_site_option') ) { |