Changeset 32643 for trunk/src/wp-admin/includes/template.php
- Timestamp:
- 05/29/2015 02:05:26 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/template.php
r32175 r32643 436 436 * 437 437 * @since 2.7.0 438 * 439 * @global WP_List_Table $wp_list_table 438 440 * 439 441 * @param int $position … … 657 659 * @since 1.2.0 658 660 * 661 * @global wpdb $wpdb 662 * 659 663 * @param WP_Post $post Optional. The post being edited. 660 664 */ … … 738 742 * @since 0.71 739 743 * 744 * @global WP_Locale $wp_locale 745 * @global object $comment 746 * 740 747 * @param int|bool $edit Accepts 1|true for editing the date, 0|false for adding the date. 741 748 * @param int|bool $for_post Accepts 1|true for applying the date to a post, 0|false for a comment. … … 839 846 * 840 847 * @since 1.5.0 848 * 849 * @global wpdb $wpdb 841 850 * 842 851 * @param int $default Optional. The default page ID to be pre-selected. Default 0. … … 934 943 * 935 944 * @since 2.5.0 945 * 946 * @global array $wp_meta_boxes 936 947 * 937 948 * @param string $id String for use in the 'id' attribute of tags. … … 1023 1034 * @since 2.5.0 1024 1035 * 1036 * @global array $wp_meta_boxes 1037 * 1025 1038 * @staticvar bool $already_sorted 1026 1039 * @param string|WP_Screen $screen Screen identifier … … 1090 1103 * 1091 1104 * @since 2.6.0 1105 * 1106 * @global array $wp_meta_boxes 1092 1107 * 1093 1108 * @param string $id String for use in the 'id' attribute of tags. … … 1577 1592 * @since 2.7.0 1578 1593 * 1594 * @global string $hook_suffix 1595 * @global string $admin_body_class 1596 * @global WP_Locale $wp_locale 1597 * 1579 1598 * @param string $title Optional. Title of the Iframe page. Default empty. 1580 1599 * @param bool $deprecated Not used. … … 1638 1657 $admin_body_classes = apply_filters( 'admin_body_class', '' ); 1639 1658 ?> 1640 <body<?php if ( isset($GLOBALS['body_id']) ) echo ' id="' . $GLOBALS['body_id'] . '"'; ?> class="wp-admin wp-core-ui no-js iframe <?php echo $admin_body_classes . ' ' . $admin_body_class; ?>"> 1659 <body<?php 1660 /** 1661 * @global string $body_id 1662 */ 1663 if ( isset($GLOBALS['body_id']) ) echo ' id="' . $GLOBALS['body_id'] . '"'; ?> class="wp-admin wp-core-ui no-js iframe <?php echo $admin_body_classes . ' ' . $admin_body_class; ?>"> 1641 1664 <script type="text/javascript"> 1642 1665 (function(){ … … 1922 1945 } 1923 1946 1947 /** 1948 * 1949 * @global bool $is_IE 1950 */ 1924 1951 function _wp_admin_html_begin() { 1925 1952 global $is_IE; … … 2108 2135 } 2109 2136 2137 /** 2138 * @static 2139 * 2140 * @global bool $_wp_editor_expand 2141 */ 2110 2142 public static function pointer_wp410_dfw() { 2111 2143 // Don't show when editor-scrolling is not used.
Note: See TracChangeset
for help on using the changeset viewer.