Changeset 61638
- Timestamp:
- 02/13/2026 06:33:22 PM (3 months ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 8 edited
-
includes/ajax-actions.php (modified) (7 diffs)
-
includes/class-core-upgrader.php (modified) (1 diff)
-
includes/class-custom-image-header.php (modified) (1 diff)
-
includes/class-theme-upgrader.php (modified) (1 diff)
-
includes/class-walker-nav-menu-checklist.php (modified) (1 diff)
-
includes/class-walker-nav-menu-edit.php (modified) (1 diff)
-
includes/class-wp-comments-list-table.php (modified) (6 diffs)
-
install.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/ajax-actions.php
r61522 r61638 1242 1242 * @since 3.1.0 1243 1243 * 1244 * @global int $post_id 1244 * @global int $post_id Post ID. 1245 1245 * 1246 1246 * @param string $action Action to perform. … … 2354 2354 * @since 3.1.0 2355 2355 * 2356 * @global array $wp_registered_widgets 2357 * @global array $wp_registered_widget_controls 2358 * @global array $wp_registered_widget_updates 2356 * @global array $wp_registered_widgets Registered widgets. 2357 * @global array $wp_registered_widget_controls Registered widget controls. 2358 * @global array $wp_registered_widget_updates Registered widget updates. 2359 2359 */ 2360 2360 function wp_ajax_save_widget() { … … 2463 2463 * @since 3.9.0 2464 2464 * 2465 * @global WP_Customize_Manager $wp_customize 2465 * @global WP_Customize_Manager $wp_customize Customizer manager object. 2466 2466 */ 2467 2467 function wp_ajax_update_widget() { … … 3589 3589 * @since 3.8.0 3590 3590 * 3591 * @global array $_wp_admin_css_colors 3591 * @global array $_wp_admin_css_colors Registered admin CSS color schemes. 3592 3592 */ 3593 3593 function wp_ajax_save_user_color_scheme() { … … 3618 3618 * @since 3.9.0 3619 3619 * 3620 * @global array $themes_allowedtags 3621 * @global array $theme_field_defaults 3620 * @global array $themes_allowedtags Allowed HTML tags for theme descriptions. 3621 * @global array $theme_field_defaults Default theme fields. 3622 3622 */ 3623 3623 function wp_ajax_query_themes() { … … 3751 3751 * @global WP_Post $post Global post object. 3752 3752 * @global WP_Embed $wp_embed WordPress Embed object. 3753 * @global WP_Scripts $wp_scripts 3754 * @global int $content_width 3753 * @global WP_Scripts $wp_scripts Script dependencies object. 3754 * @global int $content_width Shared post content width. 3755 3755 */ 3756 3756 function wp_ajax_parse_embed() { … … 3892 3892 * 3893 3893 * @global WP_Post $post Global post object. 3894 * @global WP_Scripts $wp_scripts 3894 * @global WP_Scripts $wp_scripts Script dependencies object. 3895 3895 */ 3896 3896 function wp_ajax_parse_media_shortcode() { -
trunk/src/wp-admin/includes/class-core-upgrader.php
r61455 r61638 49 49 * 50 50 * @global WP_Filesystem_Base $wp_filesystem WordPress filesystem subclass. 51 * @global callable $_wp_filesystem_direct_method 51 * @global callable $_wp_filesystem_direct_method Filesystem direct method callback. 52 52 * 53 53 * @param object $current Response object for whether WordPress is current. -
trunk/src/wp-admin/includes/class-custom-image-header.php
r61453 r61638 269 269 * @since 3.0.0 270 270 * 271 * @global array $_wp_default_headers 271 * @global array $_wp_default_headers Default headers registered for themes. 272 272 */ 273 273 public function process_default_headers() { -
trunk/src/wp-admin/includes/class-theme-upgrader.php
r61455 r61638 747 747 * @since 2.8.0 748 748 * 749 * @global WP_Filesystem_Base $wp_filesystem Subclass749 * @global WP_Filesystem_Base $wp_filesystem Filesystem subclass. 750 750 * 751 751 * @param bool $removed -
trunk/src/wp-admin/includes/class-walker-nav-menu-checklist.php
r60213 r61638 65 65 * to match parent class for PHP 8 named parameter support. 66 66 * 67 * @global int $_nav_menu_placeholder 68 * @global int|string $nav_menu_selected_id 67 * @global int $_nav_menu_placeholder A placeholder for the nav menu item ID. 68 * @global int|string $nav_menu_selected_id The ID of the selected nav menu. 69 69 * 70 70 * @param string $output Used to append additional content (passed by reference). -
trunk/src/wp-admin/includes/class-walker-nav-menu-edit.php
r60213 r61638 50 50 * to match parent class for PHP 8 named parameter support. 51 51 * 52 * @global int $_wp_nav_menu_max_depth 52 * @global int $_wp_nav_menu_max_depth The maximum depth of the nav menu. 53 53 * 54 54 * @param string $output Used to append additional content (passed by reference). -
trunk/src/wp-admin/includes/class-wp-comments-list-table.php
r61525 r61638 32 32 * @see WP_List_Table::__construct() for more information on default arguments. 33 33 * 34 * @global int $post_id 34 * @global int $post_id The ID of the post to show comments for. 35 35 * 36 36 * @param array $args An associative array of arguments. … … 225 225 /** 226 226 * Displays a message when no comments are found. 227 * 228 * @global string $comment_status 227 * @global string $comment_status The current comment status filter. 229 228 */ 230 229 public function no_items() { … … 243 242 * Returns an array of comment status links. 244 243 * 245 * @global int $post_id 246 * @global string $comment_status 247 * @global string $comment_type 244 * @global int $post_id The ID of the post to show comments for. 245 * @global string $comment_status The current comment status. 246 * @global string $comment_type The current comment type. 248 247 * 249 248 * @return array<string, string> Comment status HTML links keyed by view. … … 413 412 * Displays extra controls between bulk actions and pagination. 414 413 * 415 * @global string $comment_status 416 * @global string $comment_type 414 * @global string $comment_status Current comment status. 415 * @global string $comment_type Current comment type. 417 416 * 418 417 * @param string $which The location of the extra table nav markup: Either 'top' or 'bottom'. … … 486 485 * Gets the list of columns. 487 486 * 488 * @global int $post_id 487 * @global int $post_id The ID of the post comments are being shown for. 489 488 * 490 489 * @return string[] Array of column titles keyed by their column name. … … 1012 1011 * Outputs the author column. 1013 1012 * 1014 * @global string $comment_status 1013 * @global string $comment_status The current comment status. 1015 1014 * 1016 1015 * @param WP_Comment $comment The comment object. -
trunk/src/wp-admin/install.php
r61440 r61638 343 343 * @global string $wp_local_package Locale code of the package. 344 344 * @global WP_Locale $wp_locale WordPress date and time locale object. 345 * @global wpdb $wpdb WordPress database abstraction object. 345 346 */ 346 347 $language = '';
Note: See TracChangeset
for help on using the changeset viewer.