Make WordPress Core

Changeset 33675


Ignore:
Timestamp:
08/20/2015 10:25:41 PM (9 years ago)
Author:
DrewAPicture
Message:

Docs: Standardize @deprecated tag formatting for deprecated functions in wp-admin/includes/ms-deprecated.php.

Props Alphawolf for the initial patch
Props DrewAPicture

See #28806.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/ms-deprecated.php

    r32672 r33675  
    1111
    1212/**
     13 * Outputs the WPMU menu.
     14 *
    1315 * @deprecated 3.0.0
    1416 */
     
    1921
    2022/**
    21   * Determines if the available space defined by the admin has been exceeded by the user.
    22   *
    23   * @deprecated 3.0.0
    24   * @see is_upload_space_available()
     23 * Determines if the available space defined by the admin has been exceeded by the user.
     24 *
     25 * @deprecated 3.0.0 Use is_upload_space_available()
     26 * @see is_upload_space_available()
    2527 */
    2628function wpmu_checkAvailableSpace() {
     
    3234
    3335/**
     36 * WPMU options.
     37 *
    3438 * @deprecated 3.0.0
    3539 */
     
    4044
    4145/**
    42  * @deprecated 3.0.0
     46 * Deprecated functionality for activating a network-only plugin.
     47 *
     48 * @deprecated 3.0.0 Use activate_plugin()
    4349 * @see activate_plugin()
    4450 */
     
    4955
    5056/**
    51  * @deprecated 3.0.0
     57 * Deprecated functionality for deactivating a network-only plugin.
     58 *
     59 * @deprecated 3.0.0 Use deactivate_sitewide_plugin()
    5260 * @see deactivate_sitewide_plugin()
    5361 */
     
    5765
    5866/**
    59  * @deprecated 3.0.0
     67 * Deprecated functionality for determining if the current plugin is network-only.
     68 *
     69 * @deprecated 3.0.0 Use is_network_only_plugin()
    6070 * @see is_network_only_plugin()
    6171 */
     
    6676
    6777/**
    68  * @deprecated 3.4.0
     78 * Deprecated functionality for getting themes network-enabled themes.
     79 *
     80 * @deprecated 3.4.0 Use WP_Theme::get_allowed_on_network()
    6981 * @see WP_Theme::get_allowed_on_network()
    7082 */
     
    7587
    7688/**
    77  * @deprecated 3.4.0
     89 * Deprecated functionality for getting themes allowed on a specific site.
     90 *
     91 * @deprecated 3.4.0 Use WP_Theme::get_allowed_on_site()
    7892 * @see WP_Theme::get_allowed_on_site()
    7993 */
     
    8498
    8599/**
    86  * @deprecated
     100 * Deprecated functionality for determining whether a file is deprecated.
     101 *
     102 * @deprecated 3.5.0
    87103 */
    88104function ms_deprecated_blogs_file() {}
Note: See TracChangeset for help on using the changeset viewer.