Changeset 62088
- Timestamp:
- 03/22/2026 10:12:17 PM (5 days ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/includes/misc.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/misc.php
r62074 r62088 335 335 * @since 1.5.0 336 336 * 337 * @param string $file 337 * @param string $file Path to the recently edited file. 338 338 */ 339 339 function update_recently_edited( $file ) { … … 564 564 * @since 2.1.0 565 565 * 566 * @param string $old_value 567 * @param string $value 566 * @param string $old_value The old value of the option. Unused. 567 * @param string $value The new value of the option. Unused. 568 568 */ 569 569 function update_home_siteurl( $old_value, $value ) { … … 609 609 * @since 2.1.0 610 610 * 611 * @param string|WP_Error $message 611 * @param string|WP_Error $message The message to display, or a WP_Error object. 612 612 */ 613 613 function show_message( $message ) { … … 626 626 627 627 /** 628 * Parses the PHP content and finds function calls to be used for documentation linking. 629 * 628 630 * @since 2.8.0 629 631 * 630 * @param string $content 632 * @param string $content The PHP content to parse. 631 633 * @return string[] Array of function names. 632 634 */ … … 979 981 * @since 2.8.0 980 982 * 981 * @param DOMDocument $doc 982 * @param string $filename 983 * @param DOMDocument $doc The DOMDocument object to save. 984 * @param string $filename The file path to save the XML document to. 983 985 */ 984 986 function saveDomDocument( $doc, $filename ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid … … 1056 1058 1057 1059 /** 1060 * Outputs the JavaScript for the admin color scheme settings. 1058 1061 * 1059 1062 * @since 3.8.0
Note: See TracChangeset
for help on using the changeset viewer.