Make WordPress Core


Ignore:
Timestamp:
02/16/2024 09:45:18 PM (11 months ago)
Author:
johnbillion
Message:

Docs: Various improvements and corrections to inline documentation.

See #59651

File:
1 edited

Legend:

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

    r57592 r57644  
    494494
    495495/**
    496  * Returns drop-ins that WordPress uses.
     496 * Returns drop-in plugins that WordPress uses.
    497497 *
    498498 * Includes Multisite drop-ins only when is_multisite()
    499499 *
    500500 * @since 3.0.0
    501  * @return array[] Key is file name. The value is an array, with the first value the
    502  *  purpose of the drop-in and the second value the name of the constant that must be
    503  *  true for the drop-in to be used, or true if no constant is required.
     501 *
     502 * @return array[] {
     503 *     Key is file name. The value is an array of data about the drop-in.
     504 *
     505 *     @type array ...$0 {
     506 *         Data about the drop-in.
     507 *
     508 *         @type string      $0 The purpose of the drop-in.
     509 *         @type string|true $1 Name of the constant that must be true for the drop-in
     510 *                              to be used, or true if no constant is required.
     511 *     }
     512 * }
    504513 */
    505514function _get_dropins() {
Note: See TracChangeset for help on using the changeset viewer.