Make WordPress Core


Ignore:
Timestamp:
05/28/2015 09:40:27 PM (10 years ago)
Author:
wonderboymusic
Message:

Add @global annotations for wp-admin/*.

See #32444.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/admin-header.php

    r31955 r32642  
    1111    require_once( dirname( __FILE__ ) . '/admin.php' );
    1212
    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 */
    1426global $title, $hook_suffix, $current_screen, $wp_locale, $pagenow, $wp_version,
    1527    $update_title, $total_update_count, $parent_file;
Note: See TracChangeset for help on using the changeset viewer.