Make WordPress Core

Changeset 32607


Ignore:
Timestamp:
05/26/2015 06:52:03 PM (9 years ago)
Author:
wonderboymusic
Message:

Add missing doc blocks to load.php

See #32444.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/load.php

    r31347 r32607  
    1313 * @since 2.1.0
    1414 * @access private
    15  *
    16  * @return null Will return null if register_globals PHP directive was disabled.
    1715 */
    1816function wp_unregister_GLOBALS() {
     
    387385
    388386/**
    389  * Access/Modify private global variable `$_wp_using_ext_object_cache`.
    390  *
    391387 * Toggle `$_wp_using_ext_object_cache` on and off without directly
    392388 * touching global.
    393389 *
    394390 * @since 3.7.0
     391 *
     392 * @global bool $_wp_using_ext_object_cache
    395393 *
    396394 * @param bool $using Whether external object cache is being used.
     
    638636 * @since 1.5.1
    639637 *
     638 * @global WP_Screen $current_screen
     639 *
    640640 * @return bool True if inside WordPress administration interface, false otherwise.
    641641 */
     
    659659 * @since 3.1.0
    660660 *
     661 * @global WP_Screen $current_screen
     662 *
    661663 * @return bool True if inside WordPress blog administration pages.
    662664 */
     
    680682 * @since 3.1.0
    681683 *
     684 * @global WP_Screen $current_screen
     685 *
    682686 * @return bool True if inside WordPress network administration pages.
    683687 */
     
    702706 * @since 3.1.0
    703707 *
     708 * @global WP_Screen $current_screen
     709 *
    704710 * @return bool True if inside WordPress user administration pages.
    705711 */
     
    735741 * @since 3.1.0
    736742 *
     743 * @global int $blog_id
     744 *
    737745 * @return int Blog id
    738746 */
     
    755763 * @access private
    756764 *
    757  * @global $wp_locale The WordPress date and time locale object.
     765 * @global string    $text_direction
     766 * @global WP_Locale $wp_locale      The WordPress date and time locale object.
     767 *
     768 * @staticvar bool $loaded
    758769 */
    759770function wp_load_translations_early() {
Note: See TracChangeset for help on using the changeset viewer.