Changeset 32642
- Timestamp:
- 05/28/2015 09:40:27 PM (10 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 61 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/admin-footer.php
r31955 r32642 82 82 * @since 2.8.0 83 83 * 84 * @global string $hook_suffix 84 85 * @param string $hook_suffix The current admin page. 85 86 */ -
trunk/src/wp-admin/admin-header.php
r31955 r32642 11 11 require_once( dirname( __FILE__ ) . '/admin.php' ); 12 12 13 // In case admin-header.php is included in a function. 13 /** 14 * In case admin-header.php is included in a function. 15 * 16 * @global string $title 17 * @global string $hook_suffix 18 * @global WP_Screen $current_screen 19 * @global WP_Locale $wp_locale 20 * @global string $pagenow 21 * @global string $wp_version 22 * @global string $update_title 23 * @global int $total_update_count 24 * @global string $parent_file 25 */ 14 26 global $title, $hook_suffix, $current_screen, $wp_locale, $pagenow, $wp_version, 15 27 $update_title, $total_update_count, $parent_file; -
trunk/src/wp-admin/admin.php
r31297 r32642 95 95 wp_enqueue_script( 'common' ); 96 96 97 // $pagenow is set in vars.php 98 // $wp_importers is sometimes set in wp-admin/includes/import.php 99 // 100 // The remaining variables are imported as globals elsewhere, 101 // declared as globals here 97 98 99 100 /** 101 * $pagenow is set in vars.php 102 * $wp_importers is sometimes set in wp-admin/includes/import.php 103 * The remaining variables are imported as globals elsewhere, declared as globals here 104 * 105 * @global string $pagenow 106 * @global array $wp_importers 107 * @global string $hook_suffix 108 * @global string $plugin_page 109 * @global string $typenow 110 * @global string $taxnow 111 */ 102 112 global $pagenow, $wp_importers, $hook_suffix, $plugin_page, $typenow, $taxnow; 103 113 -
trunk/src/wp-admin/comment.php
r32116 r32642 13 13 $submenu_file = 'edit-comments.php'; 14 14 15 /** 16 * @global string $action 17 */ 15 18 global $action; 16 19 wp_reset_vars( array('action') ); -
trunk/src/wp-admin/custom-header.php
r32333 r32642 229 229 * 230 230 * @since 3.0.0 231 * 232 * @global array $_wp_default_headers 231 233 */ 232 234 public function process_default_headers() { -
trunk/src/wp-admin/customize.php
r32333 r32642 34 34 } 35 35 36 /** 37 * @global WP_Scripts $wp_scripts 38 * @global WP_Customize_Manager $wp_customize 39 */ 36 40 global $wp_scripts, $wp_customize; 37 41 -
trunk/src/wp-admin/edit-form-advanced.php
r32474 r32642 11 11 die('-1'); 12 12 13 /** 14 * @global string $post_type 15 * @global object $post_type_object 16 * @global WP_Post $post 17 */ 13 18 global $post_type, $post_type_object, $post; 14 19 -
trunk/src/wp-admin/edit-tags.php
r32116 r32642 21 21 wp_die( __( 'Cheatin’ uh?' ), 403 ); 22 22 23 // $post_type is set when the WP_Terms_List_Table instance is created 23 /** 24 * $post_type is set when the WP_Terms_List_Table instance is created 25 * 26 * @global string $post_type 27 */ 24 28 global $post_type; 25 29 -
trunk/src/wp-admin/edit.php
r32116 r32642 19 19 } 20 20 21 /** 22 * @global string $post_type 23 * @global object $post_type_object 24 */ 21 25 global $post_type, $post_type_object; 22 26 -
trunk/src/wp-admin/includes/ajax-actions.php
r32571 r32642 79 79 * 80 80 * @since 3.1.0 81 * 82 * @global WP_List_Table $wp_list_table 81 83 */ 82 84 function wp_ajax_fetch_list() { … … 227 229 * 228 230 * @since 3.1.0 231 * 232 * @global WP_Embed $wp_embed 229 233 */ 230 234 function wp_ajax_oembed_cache() { … … 763 767 * 764 768 * @since 3.1.0 769 * 770 * @global WP_List_Table $wp_list_table 765 771 */ 766 772 function wp_ajax_add_tag() { … … 865 871 * @since 3.1.0 866 872 * 873 * @global WP_List_Table $wp_list_table 874 * @global int $post_id 875 * 867 876 * @param string $action Action to perform. 868 877 */ … … 915 924 * 916 925 * @since 3.1.0 926 * 927 * @global WP_List_Table $wp_list_table 917 928 * 918 929 * @param string $action Action to perform. … … 1017 1028 * 1018 1029 * @since 3.1.0 1030 * 1031 * @global WP_List_Table $wp_list_table 1019 1032 */ 1020 1033 function wp_ajax_edit_comment() { … … 1230 1243 * @since 3.1.0 1231 1244 * 1245 * @global WP_List_Table $wp_list_table 1246 * 1232 1247 * @param string $action Action to perform. 1233 1248 */ … … 1500 1515 * 1501 1516 * @since 3.1.0 1517 * 1518 * @global WP_List_Table $wp_list_table 1502 1519 */ 1503 1520 function wp_ajax_inline_save() { … … 1592 1609 * 1593 1610 * @since 3.1.0 1611 * 1612 * @global WP_List_Table $wp_list_table 1594 1613 */ 1595 1614 function wp_ajax_inline_save_tax() { … … 1744 1763 * 1745 1764 * @since 3.1.0 1765 * 1766 * @global array $wp_registered_widgets 1767 * @global array $wp_registered_widget_controls 1768 * @global array $wp_registered_widget_updates 1746 1769 */ 1747 1770 function wp_ajax_save_widget() { … … 1833 1856 * 1834 1857 * @since 3.9.0 1858 * 1859 * @global WP_Customize_Manager $wp_customize 1835 1860 */ 1836 1861 function wp_ajax_update_widget() { … … 2476 2501 * 2477 2502 * @since 3.5.0 2503 * 2504 * @global WP_Post $post 2505 * @global WP_Embed $wp_embed 2478 2506 */ 2479 2507 function wp_ajax_send_link_to_editor() { … … 2628 2656 * 2629 2657 * @since 3.8.0 2658 * 2659 * @global array $_wp_admin_css_colors 2630 2660 */ 2631 2661 function wp_ajax_save_user_color_scheme() { … … 2653 2683 * 2654 2684 * @since 3.9.0 2685 * 2686 * @global array $themes_allowedtags 2687 * @global array $theme_field_defaults 2655 2688 */ 2656 2689 function wp_ajax_query_themes() { … … 2700 2733 * @since 4.0.0 2701 2734 * 2702 * @global WP_Post $post Global $post. 2703 * @global WP_Embed $wp_embed Embed API instance. 2735 * @global WP_Post $post Global $post. 2736 * @global WP_Embed $wp_embed Embed API instance. 2737 * @global WP_Scripts $wp_scripts 2704 2738 */ 2705 2739 function wp_ajax_parse_embed() { … … 2789 2823 } 2790 2824 2825 /** 2826 * 2827 * @global WP_Post $post 2828 * @global WP_Scripts $wp_scripts 2829 */ 2791 2830 function wp_ajax_parse_media_shortcode() { 2792 2831 global $post, $wp_scripts; … … 2968 3007 * 2969 3008 * @since 4.2.0 3009 * 3010 * @global WP_Press_This $wp_press_this 2970 3011 */ 2971 3012 function wp_ajax_press_this_save_post() { … … 2981 3022 * 2982 3023 * @since 4.2.0 3024 * 3025 * @global WP_Press_This $wp_press_this 2983 3026 */ 2984 3027 function wp_ajax_press_this_add_category() { -
trunk/src/wp-admin/includes/bookmark.php
r30356 r32642 74 74 * 75 75 * @since 2.0.0 76 * 77 * @global wpdb $wpdb 76 78 * 77 79 * @param int $link_id ID of the link to delete … … 137 139 * 138 140 * @since 2.0.0 141 * 142 * @global wpdb $wpdb 139 143 * 140 144 * @param array $linkdata Elements that make up the link to insert. … … 286 290 * @since 3.5.0 287 291 * @access private 292 * 293 * @global string $pagenow 288 294 */ 289 295 function wp_link_manager_disabled_message() { -
trunk/src/wp-admin/includes/class-wp-comments-list-table.php
r32600 r32642 34 34 * @see WP_List_Table::__construct() for more information on default arguments. 35 35 * 36 * @global int $post_id 37 * 36 38 * @param array $args An associative array of arguments. 37 39 */ … … 56 58 } 57 59 60 /** 61 * 62 * @global int $post_id 63 * @global string $comment_status 64 * @global string $search 65 * @global string $comment_type 66 */ 58 67 public function prepare_items() { 59 68 global $post_id, $comment_status, $search, $comment_type; … … 154 163 } 155 164 165 /** 166 * 167 * @global string $comment_status 168 */ 156 169 public function no_items() { 157 170 global $comment_status; … … 163 176 } 164 177 178 /** 179 * 180 * @global int $post_id 181 * @global string $comment_status 182 * @global string $comment_type 183 */ 165 184 protected function get_views() { 166 185 global $post_id, $comment_status, $comment_type; … … 216 235 } 217 236 237 /** 238 * 239 * @global string $comment_status 240 */ 218 241 protected function get_bulk_actions() { 219 242 global $comment_status; … … 240 263 } 241 264 265 /** 266 * 267 * @global string $comment_status 268 * @global string $comment_type 269 * @param string $which 270 */ 242 271 protected function extra_tablenav( $which ) { 243 272 global $comment_status, $comment_type; … … 300 329 } 301 330 331 /** 332 * 333 * @global int $post_id 334 * @return array 335 */ 302 336 public function get_columns() { 303 337 global $post_id; … … 357 391 } 358 392 393 /** 394 * 395 * @global WP_Post $post 396 * @global object $comment 397 * @param object $a_comment 398 */ 359 399 public function single_row( $a_comment ) { 360 400 global $post, $comment; … … 384 424 } 385 425 426 /** 427 * 428 * @global string $comment_status 429 * @param object $comment 430 */ 386 431 public function column_comment( $comment ) { 387 432 global $comment_status; … … 513 558 } 514 559 560 /** 561 * 562 * @global string $comment_status 563 * @param object $comment 564 */ 515 565 public function column_author( $comment ) { 516 566 global $comment_status; -
trunk/src/wp-admin/includes/class-wp-importer.php
r31220 r32642 13 13 * Returns array with imported permalinks from WordPress database 14 14 * 15 * @global wpdb $wpdb 16 * 15 17 * @param string $bid 16 18 * @return array … … 50 52 * Return count of imported permalinks from WordPress database 51 53 * 54 * @global wpdb $wpdb 55 * 52 56 * @param string $bid 53 57 * @return int … … 75 79 /** 76 80 * Set array with imported comments from WordPress database 81 * 82 * @global wpdb $wpdb 77 83 * 78 84 * @param string $bid … … 232 238 * Reset global variables that grow out of control during imports 233 239 * 234 * @return void 240 * @global wpdb $wpdb 241 * @global array $wp_actions 235 242 */ 236 243 public function stop_the_insanity() { -
trunk/src/wp-admin/includes/class-wp-links-list-table.php
r31181 r32642 31 31 } 32 32 33 /** 34 * 35 * @global int $cat_id 36 * @global string $s 37 * @global string $orderby 38 * @global string $order 39 */ 33 40 public function prepare_items() { 34 41 global $cat_id, $s, $orderby, $order; … … 61 68 } 62 69 70 /** 71 * 72 * @global int $cat_id 73 * @param string $which 74 */ 63 75 protected function extra_tablenav( $which ) { 64 76 global $cat_id; … … 109 121 } 110 122 123 /** 124 * 125 * @global int $cat_id 126 */ 111 127 public function display_rows() { 112 128 global $cat_id; -
trunk/src/wp-admin/includes/class-wp-list-table.php
r32473 r32642 505 505 * @access protected 506 506 * 507 * @global wpdb $wpdb 508 * @global WP_Locale $wp_locale 509 * 507 510 * @param string $post_type 508 511 */ -
trunk/src/wp-admin/includes/class-wp-media-list-table.php
r32517 r32642 42 42 } 43 43 44 /** 45 * 46 * @global WP_Query $wp_query 47 * @global array $post_mime_types 48 * @global array $avail_post_mime_types 49 * @global string $mode 50 */ 44 51 public function prepare_items() { 45 52 global $wp_query, $post_mime_types, $avail_post_mime_types, $mode; … … 58 65 } 59 66 67 /** 68 * 69 * @global wpdb $wpdb 70 * @global array $post_mime_types 71 * @global array $avail_post_mime_types 72 * @return array 73 */ 60 74 protected function get_views() { 61 75 global $wpdb, $post_mime_types, $avail_post_mime_types; … … 161 175 /** 162 176 * Override parent views so we can use the filter bar display. 177 * 178 * @global string $mode 163 179 */ 164 180 public function views() { … … 271 287 } 272 288 289 /** 290 * 291 * @global WP_Post $post 292 */ 273 293 public function display_rows() { 274 294 global $post; -
trunk/src/wp-admin/includes/class-wp-ms-sites-list-table.php
r32630 r32642 31 31 } 32 32 33 /** 34 * 35 * @global string $s 36 * @global string $mode 37 * @global wpdb $wpdb 38 */ 33 39 public function prepare_items() { 34 40 global $s, $mode, $wpdb; … … 148 154 149 155 /** 156 * @global string $mode 157 * 150 158 * @param string $which 151 159 */ … … 193 201 } 194 202 203 /** 204 * 205 * @global string $mode 206 */ 195 207 public function display_rows() { 196 208 global $mode; -
trunk/src/wp-admin/includes/class-wp-ms-themes-list-table.php
r31163 r32642 23 23 * @see WP_List_Table::__construct() for more information on default arguments. 24 24 * 25 * @global string $status 26 * @global int $page 27 * 25 28 * @param array $args An associative array of arguments. 26 29 */ … … 57 60 } 58 61 62 /** 63 * 64 * @global string $status 65 * @global array $totals 66 * @global int $page 67 * @global string $orderby 68 * @global string $order 69 * @global string $s 70 */ 59 71 public function prepare_items() { 60 72 global $status, $totals, $page, $orderby, $order, $s; … … 200 212 } 201 213 214 /** 215 * 216 * @return array 217 */ 202 218 public function get_columns() { 203 global $status;204 205 219 return array( 206 220 'cb' => '<input type="checkbox" />', … … 216 230 } 217 231 232 /** 233 * 234 * @global array $totals 235 * @global string $status 236 * @return array 237 */ 218 238 protected function get_views() { 219 239 global $totals, $status; … … 259 279 } 260 280 281 /** 282 * 283 * @global string $status 284 * @return array 285 */ 261 286 protected function get_bulk_actions() { 262 287 global $status; -
trunk/src/wp-admin/includes/class-wp-ms-users-list-table.php
r32630 r32642 14 14 } 15 15 16 /** 17 * 18 * @global string $usersearch 19 * @global string $role 20 * @global wpdb $wpdb 21 * @global string $mode 22 */ 16 23 public function prepare_items() { 17 24 global $usersearch, $role, $wpdb, $mode; … … 87 94 } 88 95 96 /** 97 * 98 * @global string $role 99 * @return array 100 */ 89 101 protected function get_views() { 90 102 global $role; … … 147 159 } 148 160 161 /** 162 * 163 * @global string $mode 164 */ 149 165 public function display_rows() { 150 166 global $mode; -
trunk/src/wp-admin/includes/class-wp-plugin-install-list-table.php
r31990 r32642 49 49 } 50 50 51 /** 52 * 53 * @global array $tabs 54 * @global string $tab 55 * @global int $paged 56 * @global string $type 57 * @global string $term 58 * @global string $wp_version 59 */ 51 60 public function prepare_items() { 52 61 include( ABSPATH . 'wp-admin/includes/plugin-install.php' ); … … 209 218 } 210 219 220 /** 221 * 222 * @global array $tabs 223 * @global string $tab 224 * @return array 225 */ 211 226 protected function get_views() { 212 227 global $tabs, $tab; … … 277 292 278 293 /** 294 * @global string $tab 295 * 279 296 * @param string $which 280 297 */ … … 342 359 } 343 360 361 /** 362 * @global string $wp_version 363 */ 344 364 public function display_rows() { 345 365 $plugins_allowedtags = array( -
trunk/src/wp-admin/includes/class-wp-plugins-list-table.php
r31873 r32642 18 18 * @see WP_List_Table::__construct() for more information on default arguments. 19 19 * 20 * @global string $status 21 * @global int $page 22 * 20 23 * @param array $args An associative array of arguments. 21 24 */ … … 46 49 } 47 50 51 /** 52 * 53 * @global string $status 54 * @global type $plugins 55 * @global array $totals 56 * @global int $page 57 * @global string $orderby 58 * @global string $order 59 * @global string $s 60 */ 48 61 public function prepare_items() { 49 62 global $status, $plugins, $totals, $page, $orderby, $order, $s; … … 242 255 } 243 256 257 /** 258 * 259 * @global array $plugins 260 */ 244 261 public function no_items() { 245 262 global $plugins; … … 251 268 } 252 269 270 /** 271 * 272 * @global string $status 273 * @return array 274 */ 253 275 public function get_columns() { 254 276 global $status; … … 265 287 } 266 288 289 /** 290 * 291 * @global array $totals 292 * @global string $status 293 * @return array 294 */ 267 295 protected function get_views() { 268 296 global $totals, $status; … … 309 337 } 310 338 339 /** 340 * 341 * @global string $status 342 * @return array 343 */ 311 344 protected function get_bulk_actions() { 312 345 global $status; … … 374 407 } 375 408 409 /** 410 * 411 * @global string $status 412 */ 376 413 public function display_rows() { 377 414 global $status; -
trunk/src/wp-admin/includes/class-wp-posts-list-table.php
r32333 r32642 56 56 * @see WP_List_Table::__construct() for more information on default arguments. 57 57 * 58 * @global object $post_type_object 59 * @global wpdb $wpdb 60 * 58 61 * @param array $args An associative array of arguments. 59 62 */ … … 102 105 } 103 106 107 /** 108 * 109 * @global array $avail_post_stati 110 * @global WP_Query $wp_query 111 * @global int $per_page 112 * @global string $mode 113 */ 104 114 public function prepare_items() { 105 115 global $avail_post_stati, $wp_query, $per_page, $mode; … … 164 174 } 165 175 176 /** 177 * 178 * @global array $locked_post_status This seems to be deprecated. 179 * @global array $avail_post_stati 180 * @return array 181 */ 166 182 protected function get_views() { 167 183 global $locked_post_status, $avail_post_stati; … … 468 484 469 485 /** 470 * @global wpdb $wpdb 486 * @global wpdb $wpdb 487 * @global WP_Post $post 471 488 * @param array $pages 472 489 * @param int $pagenum … … 629 646 630 647 /** 631 * @global string $mode 648 * @global string $mode 649 * @global WP_Post $post 650 * 632 651 * @param WP_Post $post 633 652 * @param int $level … … 992 1011 * 993 1012 * @since 3.1.0 1013 * 1014 * @global string $mode 994 1015 */ 995 1016 public function inline_edit() { -
trunk/src/wp-admin/includes/class-wp-press-this.php
r32471 r32642 1149 1149 * @since 4.2.0 1150 1150 * @access public 1151 * 1152 * @global WP_Locale $wp_locale 1153 * @global string $wp_version 1154 * @global bool $is_IE 1151 1155 */ 1152 1156 public function html() { … … 1464 1468 } 1465 1469 1470 /** 1471 * 1472 * @global WP_Press_This $wp_press_this 1473 */ 1466 1474 $GLOBALS['wp_press_this'] = new WP_Press_This; -
trunk/src/wp-admin/includes/class-wp-terms-list-table.php
r31331 r32642 21 21 * 22 22 * @see WP_List_Table::__construct() for more information on default arguments. 23 * 24 * @global string $post_type 25 * @global string $taxonomy 26 * @global string $action 27 * @global object $tax 23 28 * 24 29 * @param array $args An associative array of arguments. -
trunk/src/wp-admin/includes/class-wp-theme-install-list-table.php
r31672 r32642 16 16 } 17 17 18 /** 19 * 20 * @global array $tabs 21 * @global string $tab 22 * @global int $paged 23 * @global string $type 24 * @global array $theme_field_defaults 25 */ 18 26 public function prepare_items() { 19 27 include( ABSPATH . 'wp-admin/includes/theme-install.php' ); … … 138 146 } 139 147 148 /** 149 * 150 * @global array $tabs 151 * @global string $tab 152 * @return array 153 */ 140 154 protected function get_views() { 141 155 global $tabs, $tab; … … 191 205 /** 192 206 * Prints a theme from the WordPress.org API. 207 * 208 * @global array $themes_allowedtags 193 209 * 194 210 * @param object $theme An object that contains theme data returned by the WordPress.org API. … … 332 348 /** 333 349 * Prints the info for a theme (to be used in the theme installer modal). 350 * 351 * @global array $themes_allowedtags 334 352 * 335 353 * @param object $theme - A WordPress.org Theme API object. … … 397 415 * @access public 398 416 * 399 * @ uses $tab Global; current tab within Themes->Install screen400 * @ uses $type Global; type of search.417 * @global string $tab Current tab within Themes->Install screen 418 * @global string $type Type of search. 401 419 */ 402 420 public function _js_vars( $extra_args = array() ) { -
trunk/src/wp-admin/includes/class-wp-upgrader.php
r31991 r32642 142 142 * 143 143 * @since 2.8.0 144 * 145 * @global WP_Filesystem_Base $wp_filesystem Subclass 144 146 * 145 147 * @param array $directories Optional. A list of directories. If any of these do … … 245 247 * @since 2.8.0 246 248 * 249 * @global WP_Filesystem_Base $wp_filesystem Subclass 250 * 247 251 * @param string $package Full path to the package file. 248 252 * @param bool $delete_package Optional. Whether to delete the package file after attempting … … 297 301 * 298 302 * @since 2.8.0 303 * 304 * @global WP_Filesystem_Base $wp_filesystem Subclass 305 * @global array $wp_theme_directories 299 306 * 300 307 * @param array|string $args { … … 627 634 * @since 2.8.0 628 635 * 636 * @global WP_Filesystem_Base $wp_filesystem Subclass 637 * 629 638 * @param bool $enable True to enable maintenance mode, false to disable. 630 639 */ … … 958 967 * @since 3.3.0 959 968 * 969 * @global WP_Filesystem_Base $wp_filesystem Subclass 970 * 960 971 * @param string $source The path to the downloaded package source. 961 972 * @return string|WP_Error The source as passed, or a {@see WP_Error} object if no plugins were found. … … 1051 1062 * 1052 1063 * @since 2.8.0 1064 * 1065 * @global WP_Filesystem_Base $wp_filesystem Subclass 1053 1066 */ 1054 1067 public function delete_old_plugin($removed, $local_destination, $remote_destination, $plugin) { … … 1473 1486 * @since 3.3.0 1474 1487 * 1488 * @global WP_Filesystem_Base $wp_filesystem Subclass 1489 * 1475 1490 * @param string $source The full path to the package source. 1476 1491 * @return string|WP_Error The source or a WP_Error. … … 1564 1579 * 1565 1580 * @since 2.8.0 1581 * 1582 * @global WP_Filesystem_Base $wp_filesystem Subclass 1566 1583 */ 1567 1584 public function delete_old_theme( $removed, $local_destination, $remote_destination, $theme ) { … … 1735 1752 * 1736 1753 * @since 3.7.0 1754 * 1755 * @global WP_Filesystem_Base $wp_filesystem Subclass 1737 1756 * 1738 1757 * @param array $language_updates Optional. Language pack updates. Default empty array. … … 1860 1879 * 1861 1880 * @since 3.7.0 1881 * 1882 * @global WP_Filesystem_Base $wp_filesystem Subclass 1862 1883 */ 1863 1884 public function check_package( $source, $remote_source ) { … … 1945 1966 * 1946 1967 * @since 2.8.0 1968 * 1969 * @global WP_Filesystem_Base $wp_filesystem Subclass 1970 * @global callback $_wp_filesystem_direct_method 1947 1971 * 1948 1972 * @param object $current Response object for whether WordPress is current. … … 2219 2243 * @since 3.7.0 2220 2244 * 2245 * @global string $wp_version 2246 * @global string $wp_local_package 2247 * 2221 2248 * @return bool True if the checksums match, otherwise false. 2222 2249 */ … … 2463 2490 * 2464 2491 * @since 3.7.0 2492 * 2493 * @global wpdb $wpdb 2465 2494 * 2466 2495 * @param string $type The type of update being checked: 'core', 'theme', … … 2688 2717 * 2689 2718 * @since 3.7.0 2719 * 2720 * @global wpdb $wpdb 2721 * @global string $wp_version 2690 2722 */ 2691 2723 public function run() { … … 2822 2854 * If we tried to perform a core update, check if we should send an email, 2823 2855 * and if we need to avoid processing future updates. 2856 * 2857 * @global string $wp_version 2824 2858 * 2825 2859 * @param object $update_result The result of the core update. Includes the update offer and result. … … 2910 2944 * @since 3.7.0 2911 2945 * 2946 * @global string $wp_version 2947 * 2912 2948 * @param string $type The type of email to send. Can be one of 'success', 'fail', 'manual', 'critical'. 2913 2949 * @param object $core_update The update offer that was attempted. -
trunk/src/wp-admin/includes/class-wp-users-list-table.php
r32015 r32642 70 70 * @since 3.1.0 71 71 * @access public 72 * 73 * @global string $role 74 * @global string $usersearch 72 75 */ 73 76 public function prepare_items() { … … 134 137 * @access protected 135 138 * 139 * @global string $role 140 * 136 141 * @return array An array of HTML links, one for each view. 137 142 */ 138 143 protected function get_views() { 139 global $wp_roles, $role; 144 global $role; 145 146 $wp_roles = wp_roles(); 140 147 141 148 if ( $this->is_site_users ) { … … 330 337 * @access public 331 338 * 332 * @global WP_Roles $wp_roles User roles object.333 *334 339 * @param object $user_object The current user object. 335 340 * @param string $style Deprecated. Not used. … … 340 345 */ 341 346 public function single_row( $user_object, $style = '', $role = '', $numposts = 0 ) { 342 global $wp_roles;347 $wp_roles = wp_roles(); 343 348 344 349 if ( ! ( $user_object instanceof WP_User ) ) { -
trunk/src/wp-admin/includes/comment.php
r30122 r32642 157 157 * 158 158 * @since 2.5.0 159 * @uses $comment 159 * 160 * @global object $comment 160 161 * 161 162 * @param string $name User name. -
trunk/src/wp-admin/includes/dashboard.php
r32600 r32642 13 13 * 14 14 * @since 2.5.0 15 * 16 * @global array $wp_registered_widgets 17 * @global array $wp_registered_widget_controls 18 * @global array $wp_dashboard_control_callbacks 15 19 */ 16 20 function wp_dashboard_setup() { … … 126 130 } 127 131 132 /** 133 * 134 * @global array $wp_dashboard_control_callbacks 135 * 136 * @param string $widget_id 137 * @param string $widget_name 138 * @param callback $callback 139 * @param callback $control_callback 140 * @param array $callback_args 141 */ 128 142 function wp_add_dashboard_widget( $widget_id, $widget_name, $callback, $control_callback = null, $callback_args = null ) { 129 143 $screen = get_current_screen(); … … 414 428 * @since 3.8.0 415 429 * 430 * @global int $post_ID 431 * 416 432 * @param string $error_msg Optional. Error message. Default false. 417 433 */ … … 518 534 } 519 535 536 /** 537 * @global object $comment 538 * 539 * @param object $comment 540 * @param bool $show_date 541 */ 520 542 function _wp_dashboard_recent_comments_row( &$comment, $show_date = true ) { 521 543 $GLOBALS['comment'] =& $comment; … … 874 896 * 875 897 * @since 2.5.0 898 * 899 * @global array $wp_dashboard_control_callbacks 876 900 * 877 901 * @param int $widget_control_id Registered Widget ID. … … 1231 1255 * 1232 1256 * @since 3.2.0 1257 * 1258 * @global string $wp_version 1233 1259 * 1234 1260 * @return array|bool False on failure, array of browser data on success. -
trunk/src/wp-admin/includes/export.php
r31090 r32642 21 21 * @since 2.1.0 22 22 * 23 * @global wpdb $wpdb 24 * @global WP_Post $post 25 * 23 26 * @param array $args Filters defining what should be included in the export. 24 27 */ … … 244 247 * 245 248 * @since 3.1.0 249 * 250 * @global wpdb $wpdb 246 251 * 247 252 * @param array $post_ids Array of post IDs to filter the query by. Optional. … … 376 381 377 382 <?php if ( $post_ids ) { 383 /** 384 * @global WP_Query $wp_query 385 */ 378 386 global $wp_query; 379 387 -
trunk/src/wp-admin/includes/file.php
r32338 r32642 51 51 * @since 1.5.0 52 52 * 53 * @ uses$wp_file_descriptions53 * @global array $wp_file_descriptions 54 54 * @param string $file Filesystem path or filename 55 55 * @return string Description of file from $wp_file_descriptions or basename of $file if description doesn't exist … … 517 517 * @since 2.5.0 518 518 * 519 * @global WP_Filesystem_Base $wp_filesystem Subclass 520 * 519 521 * @param string $file Full path and filename of zip archive 520 522 * @param string $to Full path on the filesystem to extract archive to … … 580 582 * @access private 581 583 * 584 * @global WP_Filesystem_Base $wp_filesystem Subclass 585 * 582 586 * @param string $file Full path and filename of zip archive 583 587 * @param string $to Full path on the filesystem to extract archive to … … 678 682 * @access private 679 683 * 684 * @global WP_Filesystem_Base $wp_filesystem Subclass 685 * 680 686 * @param string $file Full path and filename of zip archive 681 687 * @param string $to Full path on the filesystem to extract archive to … … 769 775 * 770 776 * @since 2.5.0 777 * 778 * @global WP_Filesystem_Base $wp_filesystem Subclass 771 779 * 772 780 * @param string $from source directory … … 824 832 * @since 2.5.0 825 833 * 834 * @global WP_Filesystem_Base $wp_filesystem Subclass 835 * 826 836 * @param array|false $args Optional. Connection args, These are passed directly to 827 837 * the `WP_Filesystem_*()` classes. Default false. … … 900 910 * 901 911 * @since 2.5.0 912 * 913 * @global callback $_wp_filesystem_direct_method 902 914 * 903 915 * @param array $args Optional. Connection details. Default empty array. -
trunk/src/wp-admin/includes/image-edit.php
r31575 r32642 673 673 * in $_REQUEST['history'] 674 674 * 675 * @global array $_wp_additional_image_sizes 676 * 675 677 * @param int $post_id 676 678 * @return \stdClass -
trunk/src/wp-admin/includes/image.php
r32545 r32642 67 67 * 68 68 * @since 2.1.0 69 * 70 * @global array $_wp_additional_image_sizes 69 71 * 70 72 * @param int $attachment_id Attachment Id to process. -
trunk/src/wp-admin/includes/import.php
r30980 r32642 12 12 * @since 2.0.0 13 13 * 14 * @global array $wp_importers 14 15 * @return array 15 16 */ … … 42 43 * 43 44 * @since 2.0.0 45 * 46 * @global array $wp_importers 44 47 * 45 48 * @param string $id Importer tag. Used to uniquely identify importer. -
trunk/src/wp-admin/includes/list-table.php
r29137 r32642 13 13 * @access private 14 14 * @since 3.1.0 15 * 16 * @global string $hook_suffix 15 17 * 16 18 * @param string $class The type of the list table, which is the class name. -
trunk/src/wp-admin/includes/media.php
r32545 r32642 37 37 * @since 2.5.0 38 38 * 39 * @global wpdb $wpdb 40 * 39 41 * @param array $tabs 40 42 * @return array $tabs with gallery if post has image attachment … … 68 70 * 69 71 * @since 2.5.0 72 * 73 * @global string $redir_tab 70 74 */ 71 75 function the_media_upload_tabs() { … … 433 437 * 434 438 * @since 2.5.0 439 * 440 * @global int $body_id 435 441 * 436 442 * @param string|callable $content_func … … 527 533 * 528 534 * @since 2.5.0 535 * 536 * @global int $post_ID 529 537 * 530 538 * @param string $editor_id … … 1289 1297 * @since 2.5.0 1290 1298 * 1299 * @global WP_Query $wp_the_query 1300 * 1291 1301 * @param int $post_id Optional. Post ID. 1292 1302 * @param array $errors Errors for attachment, if any. … … 1322 1332 * 1323 1333 * @since 2.5.0 1334 * 1335 * @global string $redir_tab 1324 1336 * 1325 1337 * @param int $attachment_id Attachment ID for modification. … … 1737 1749 * @since 2.5.0 1738 1750 * 1751 * @global string $type 1752 * @global string $tab 1753 * @global bool $is_IE 1754 * @global bool $is_opera 1755 * 1739 1756 * @param array $errors 1740 1757 */ … … 2135 2152 * 2136 2153 * @since 2.5.0 2154 * 2155 * @global string $redir_tab 2156 * @global string $type 2157 * @global string $tab 2137 2158 * 2138 2159 * @param array $errors … … 2281 2302 * @since 2.5.0 2282 2303 * 2304 * @global wpdb $wpdb 2305 * @global WP_Query $wp_query 2306 * @global WP_Locale $wp_locale 2307 * @global string $type 2308 * @global string $tab 2309 * @global array $post_mime_types 2310 * 2283 2311 * @param array $errors 2284 2312 */ … … 2565 2593 * 2566 2594 * @since 2.6.0 2595 * 2596 * @global int $post_ID 2567 2597 */ 2568 2598 function media_upload_flash_bypass() { -
trunk/src/wp-admin/includes/menu.php
r31829 r32642 280 280 $default_menu_order = array_flip($default_menu_order); 281 281 282 /** 283 * 284 * @global array $menu_order 285 * @global array $default_menu_order 286 * 287 * @param array $a 288 * @param array $b 289 * @return int 290 */ 282 291 function sort_menu($a, $b) { 283 292 global $menu_order, $default_menu_order; -
trunk/src/wp-admin/includes/meta-boxes.php
r32116 r32642 7 7 * 8 8 * @since 2.7.0 9 * 10 * @global string $action 9 11 * 10 12 * @param object $post … … 671 673 * @since 2.6.0 672 674 * 675 * @global int $user_ID 676 * 673 677 * @param object $post 674 678 */ … … 913 917 * 914 918 * @since 1.0.1 919 * 920 * @global object $link 915 921 * 916 922 * @param string $class -
trunk/src/wp-admin/includes/misc.php
r32051 r32642 38 38 * 39 39 * @since 3.7.0 40 * 41 * @global bool $is_nginx 40 42 * 41 43 * @return bool Whether the server supports URL rewriting. … … 154 156 * 155 157 * @since 1.5.0 158 * 159 * @global WP_Rewrite $wp_rewrite 156 160 */ 157 161 function save_mod_rewrite_rules() { … … 183 187 * 184 188 * @since 2.8.0 189 * 190 * @global WP_Rewrite $wp_rewrite 185 191 * 186 192 * @return bool True if web.config was updated successfully … … 594 600 * 595 601 * @since 3.0.0 602 * 603 * @global array $_wp_admin_css_colors 596 604 */ 597 605 function admin_color_scheme_picker( $user_id ) { … … 647 655 } 648 656 657 /** 658 * 659 * @global array $_wp_admin_css_colors 660 */ 649 661 function wp_color_scheme_settings() { 650 662 global $_wp_admin_css_colors; … … 788 800 * @since 3.8.0 789 801 * 802 * @global string $pagenow 803 * 790 804 * @param array $settings An array of Heartbeat settings. 791 805 * @return array Filtered Heartbeat settings. … … 834 848 * 835 849 * @since 4.0 850 * 851 * @global bool $is_safari 852 * @global bool $is_chrome 836 853 */ 837 854 function post_form_autocomplete_off() { -
trunk/src/wp-admin/includes/ms.php
r32381 r32642 48 48 * 49 49 * @since 3.0.0 50 * 51 * @global wpdb $wpdb 50 52 * 51 53 * @param int $blog_id Blog ID. … … 176 178 * 177 179 * @todo Merge with wp_delete_user() ? 180 * 181 * @global wpdb $wpdb 178 182 * 179 183 * @param int $id The user ID. … … 495 499 * 496 500 * @since 3.0.0 501 * 502 * @global wpdb $wpdb 497 503 * 498 504 * @param int $id The user ID. … … 843 849 * @since 3.0.0 844 850 * 851 * @global array $super_admins 852 * 845 853 * @param int $user_id ID of the user to be granted Super Admin privileges. 846 854 * @return bool True on success, false on failure. This can fail when the user is … … 888 896 * @since 3.0.0 889 897 * 898 * @global array $super_admins 899 * 890 900 * @param int $user_id ID of the user Super Admin privileges to be revoked from. 891 901 * @return bool True on success, false on failure. This can fail when the user's email … … 938 948 * @since 3.1.0 939 949 * 950 * @global wpdb $wpdb 951 * 940 952 * @param int $site_id The network/site ID to check. 941 953 * @return bool True if network can be edited, otherwise false. -
trunk/src/wp-admin/includes/nav-menu.php
r32545 r32642 40 40 * @see Walker_Nav_Menu::start_el() 41 41 * @since 3.0.0 42 * 43 * @global int $_wp_nav_menu_max_depth 42 44 * 43 45 * @param string $output Passed by reference. Used to append additional content. … … 280 282 * 281 283 * @since 3.0.0 284 * 285 * @global int $_nav_menu_placeholder 282 286 * 283 287 * @param string $output Passed by reference. Used to append additional content. … … 464 468 * 465 469 * @since 3.0.0 470 * 471 * @global array $wp_meta_boxes 466 472 **/ 467 473 function wp_initial_nav_menu_meta_boxes() { … … 550 556 * @since 3.6.0 551 557 * 552 * @ uses global $one_theme_location_no_menus to determine if no menus exist558 * @global bool $one_theme_location_no_menus to determine if no menus exist 553 559 * 554 560 * @param int|string $nav_menu_selected_id (id, name or slug) of the currently-selected menu … … 568 574 * 569 575 * @since 3.0.0 576 * 577 * @global int $_nav_menu_placeholder 578 * @global int|string $nav_menu_selected_id 570 579 */ 571 580 function wp_nav_menu_item_link_meta_box() { … … 606 615 * 607 616 * @since 3.0.0 617 * 618 * @global int $_nav_menu_placeholder 619 * @global int|string $nav_menu_selected_id 608 620 * 609 621 * @param string $object Not used. … … 850 862 * @since 3.0.0 851 863 * 864 * @global int|string $nav_menu_selected_id 865 * 852 866 * @param string $object Not used. 853 867 * @param string $taxonomy The taxonomy object. … … 1229 1243 * @since 3.0.0 1230 1244 * 1245 * @global wpdb $wpdb 1231 1246 */ 1232 1247 function _wp_delete_orphaned_draft_menu_items() { -
trunk/src/wp-admin/includes/plugin-install.php
r32062 r32642 236 236 * 237 237 * @since 2.7.0 238 * 239 * @global WP_List_Table $wp_list_table 238 240 */ 239 241 function display_plugins_table() { … … 338 340 * 339 341 * @since 2.7.0 342 * 343 * @global string $tab 344 * @global string $wp_version 340 345 */ 341 346 function install_plugin_information() { -
trunk/src/wp-admin/includes/plugin.php
r32504 r32642 752 752 * @since 2.6.0 753 753 * 754 * @global WP_Filesystem_Base $wp_filesystem 755 * 754 756 * @param array $plugins List of plugins to delete. 755 757 * @param string $deprecated Deprecated. -
trunk/src/wp-admin/includes/schema.php
r32381 r32642 334 334 * 335 335 * @global wpdb $wpdb WordPress database abstraction object. 336 * @uses $wp_db_version 336 * @global int $wp_db_version 337 * @global int $wp_current_db_version 337 338 */ 338 339 function populate_options() { -
trunk/src/wp-admin/includes/user.php
r32025 r32642 29 29 */ 30 30 function edit_user( $user_id = 0 ) { 31 global $wp_roles;31 $wp_roles = wp_roles(); 32 32 $user = new stdClass; 33 33 if ( $user_id ) { … … 199 199 */ 200 200 function get_editable_roles() { 201 global $wp_roles; 202 203 $all_roles = $wp_roles->roles; 201 $all_roles = wp_roles()->roles; 204 202 205 203 /** … … 236 234 * 237 235 * @since 2.0.0 236 * 237 * @global wpdb $wpdb 238 238 * 239 239 * @param int $user_id User ID. … … 264 264 * 265 265 * @since 2.0.0 266 * 267 * @global wpdb $wpdb 266 268 * 267 269 * @param int $id User ID. … … 389 391 * @since 2.8.0 390 392 */ 393 /** 394 * 395 * @global int $user_ID 396 * 397 * @param false $errors Deprecated. 398 */ 391 399 function default_password_nag_handler($errors = false) { 392 400 global $user_ID; … … 425 433 /** 426 434 * @since 2.8.0 435 * 436 * @global string $pagenow 427 437 */ 428 438 function default_password_nag() { -
trunk/src/wp-admin/includes/widgets.php
r31200 r32642 11 11 * 12 12 * @since 2.5.0 13 * 14 * @global array $wp_registered_widgets 15 * @global array $wp_registered_widget_controls 13 16 */ 14 17 function wp_list_widgets() { … … 100 103 * @since 2.5.0 101 104 * 105 * @global array $wp_registered_widgets 106 * 102 107 * @param array $params 103 108 * @return array … … 124 129 } 125 130 126 function next_widget_id_number($id_base) { 131 /** 132 * 133 * @global array $wp_registered_widgets 134 * 135 * @param string $id_base 136 * @return int 137 */ 138 function next_widget_id_number( $id_base ) { 127 139 global $wp_registered_widgets; 128 140 $number = 1; … … 143 155 * 144 156 * @since 2.5.0 157 * 158 * @global array $wp_registered_widgets 159 * @global array $wp_registered_widget_controls 160 * @global array $sidebars_widgets 145 161 * 146 162 * @param array $sidebar_args -
trunk/src/wp-admin/install-helper.php
r30542 r32642 154 154 * 155 155 * @since 1.0.0 156 * 157 * @global wpdb $wpdb 156 158 * 157 159 * @param string $table_name Table name -
trunk/src/wp-admin/install.php
r32116 r32642 160 160 } 161 161 162 /** 163 * @global string $wp_version 164 * @global string $required_php_version 165 * @global string $required_mysql_version 166 * @global wpdb $wpdb 167 */ 162 168 global $wp_version, $required_php_version, $required_mysql_version; 163 169 … … 184 190 } 185 191 192 /** 193 * @global string $wp_local_package 194 * @global WP_Locale $wp_locale 195 */ 186 196 $language = ''; 187 197 if ( ! empty( $_REQUEST['language'] ) ) { -
trunk/src/wp-admin/link-parse-opml.php
r31986 r32642 10 10 die(); 11 11 12 /** 13 * @global string $opml 14 */ 12 15 global $opml; 13 16 -
trunk/src/wp-admin/menu-header.php
r31955 r32642 11 11 * 12 12 * @global string $self 13 * @name $self14 * @var string15 13 */ 16 14 $self = preg_replace('|^.*/wp-admin/network/|i', '', $_SERVER['PHP_SELF']); … … 19 17 $self = preg_replace('|^.*/mu-plugins/|i', '', $self); 20 18 21 global $menu, $submenu, $parent_file; //For when admin-header is included from within a function. 19 /** 20 * For when admin-header is included from within a function. 21 * 22 * @global array $menu 23 * @global array $submenu 24 * @global string $parent_file 25 */ 26 global $menu, $submenu, $parent_file; 22 27 23 28 /** … … 40 45 * @since 2.7.0 41 46 * 47 * @global string $self 48 * @global string $parent_file 49 * @global string $submenu_file 50 * @global string $plugin_page 51 * @global string $typenow 52 * 42 53 * @param array $menu 43 54 * @param array $submenu 44 * @param bool $submenu_as_parent55 * @param bool $submenu_as_parent 45 56 */ 46 57 function _wp_menu_output( $menu, $submenu, $submenu_as_parent = true ) { -
trunk/src/wp-admin/nav-menus.php
r32116 r32642 468 468 * Ensure the user will be able to scroll horizontally 469 469 * by adding a class for the max menu depth. 470 * 471 * @global int $_wp_nav_menu_max_depth 470 472 */ 471 473 global $_wp_nav_menu_max_depth; … … 478 480 } 479 481 480 function wp_nav_menu_max_depth($classes) { 482 /** 483 * 484 * @global int $_wp_nav_menu_max_depth 485 * 486 * @param string $classes 487 * @return string 488 */ 489 function wp_nav_menu_max_depth( $classes ) { 481 490 global $_wp_nav_menu_max_depth; 482 491 return "$classes menu-max-depth-$_wp_nav_menu_max_depth"; -
trunk/src/wp-admin/network.php
r32116 r32642 36 36 * 37 37 * @since 3.0.0 38 * 39 * @global wpdb $wpdb 40 * 38 41 * @return Whether a network exists. 39 42 */ … … 65 68 * 66 69 * @since 3.0.0 70 * 71 * @global wpdb $wpdb 72 * 67 73 * @return bool Whether subdirectory install is allowed 68 74 */ … … 150 156 * 151 157 * @since 3.0.0 158 * 159 * @global bool $is_apache 152 160 */ 153 161 function network_step1( $errors = false ) { … … 327 335 * 328 336 * @since 3.0.0 337 * 338 * @global wpdb $wpdb 329 339 */ 330 340 function network_step2( $errors = false ) { -
trunk/src/wp-admin/network/upgrade.php
r32152 r32642 49 49 50 50 if ( $n < 5 ) { 51 /** 52 * @global string $wp_db_version 53 */ 51 54 global $wp_db_version; 52 55 update_site_option( 'wpmu_upgrade_site', $wp_db_version ); -
trunk/src/wp-admin/options-general.php
r32116 r32642 322 322 <td><select name="start_of_week" id="start_of_week"> 323 323 <?php 324 /** 325 * @global WP_Locale $wp_locale 326 */ 324 327 global $wp_locale; 325 328 -
trunk/src/wp-admin/options-media.php
r32116 r32642 85 85 </table> 86 86 87 <?php if ( isset( $GLOBALS['wp_settings']['media']['embeds'] ) ) : ?> 87 <?php 88 /** 89 * @global array $wp_settings 90 */ 91 if ( isset( $GLOBALS['wp_settings']['media']['embeds'] ) ) : ?> 88 92 <h3 class="title"><?php _e('Embeds') ?></h3> 89 93 <table class="form-table"> -
trunk/src/wp-admin/post-new.php
r31121 r32642 10 10 require_once( dirname( __FILE__ ) . '/admin.php' ); 11 11 12 /** 13 * @global string $post_type 14 * @global object $post_type_object 15 * @global WP_Post $post 16 */ 12 17 global $post_type, $post_type_object, $post; 13 18 -
trunk/src/wp-admin/post.php
r31633 r32642 24 24 $post_id = $post_ID = 0; 25 25 26 /** 27 * @global string $post_type 28 * @global object $post_type_object 29 * @global WP_Post $post 30 */ 26 31 global $post_type, $post_type_object, $post; 27 32 -
trunk/src/wp-admin/press-this.php
r31534 r32642 15 15 wp_die( __( 'Cheatin’ uh?' ), 403 ); 16 16 17 /** 18 * @global WP_Press_This $wp_press_this 19 */ 17 20 if ( empty( $GLOBALS['wp_press_this'] ) ) { 18 21 include( ABSPATH . 'wp-admin/includes/class-wp-press-this.php' ); -
trunk/src/wp-admin/setup-config.php
r32116 r32642 64 64 * @ignore 65 65 * @since 2.3.0 66 * 67 * @global string $wp_version 68 * @global string $wp_local_package 69 * @global WP_Locale $wp_locale 66 70 */ 67 71 function setup_config_display_header( $body_classes = array() ) { -
trunk/src/wp-admin/update-core.php
r32522 r32642 23 23 wp_die( __( 'You do not have sufficient permissions to update this site.' ) ); 24 24 25 /** 26 * 27 * @global string $wp_local_package 28 * @global wpdb $wpdb 29 * @global string $wp_version 30 * 31 * @staticvar bool $first_pass 32 * 33 * @param object $update 34 */ 25 35 function list_core_update( $update ) { 26 36 global $wp_local_package, $wpdb, $wp_version; … … 137 147 * @since 2.7.0 138 148 * 139 * @return null 149 * @global string $wp_version 150 * @global string $required_php_version 151 * @global string $required_mysql_version 140 152 */ 141 153 function core_upgrade_preamble() { … … 199 211 } 200 212 213 /** 214 * 215 * @global string $wp_version 216 */ 201 217 function list_plugin_updates() { 202 218 global $wp_version; … … 365 381 * @since 2.7.0 366 382 * 367 * @ return null383 * @global WP_Filesystem_Base $wp_filesystem Subclass 368 384 */ 369 385 function do_core_upgrade( $reinstall = false ) { -
trunk/src/wp-admin/upgrade.php
r32116 r32642 36 36 } 37 37 38 /** 39 * @global string $wp_version 40 * @global string $required_php_version 41 * @global string $required_mysql_version 42 * @global wpdb $wpdb 43 */ 38 44 global $wp_version, $required_php_version, $required_mysql_version; 39 45
Note: See TracChangeset
for help on using the changeset viewer.