Changeset 57644 for trunk/src/wp-admin/includes/plugin.php
- Timestamp:
- 02/16/2024 09:45:18 PM (11 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/plugin.php
r57592 r57644 494 494 495 495 /** 496 * Returns drop-in s that WordPress uses.496 * Returns drop-in plugins that WordPress uses. 497 497 * 498 498 * Includes Multisite drop-ins only when is_multisite() 499 499 * 500 500 * @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 * } 504 513 */ 505 514 function _get_dropins() {
Note: See TracChangeset
for help on using the changeset viewer.