Changeset 61657
- Timestamp:
- 02/17/2026 06:04:42 AM (6 days ago)
- Location:
- trunk/src/wp-admin/includes
- Files:
-
- 4 edited
-
class-wp-debug-data.php (modified) (1 diff)
-
class-wp-importer.php (modified) (1 diff)
-
class-wp-links-list-table.php (modified) (6 diffs)
-
class-wp-list-table.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-debug-data.php
r61612 r61657 1133 1133 * @since 6.7.0 1134 1134 * 1135 * @global array $_wp_theme_features1135 * @global array<string, bool|array> $_wp_theme_features The theme features for the active theme. 1136 1136 * 1137 1137 * @return array<string, string|array> The active theme debug data. -
trunk/src/wp-admin/includes/class-wp-importer.php
r61523 r61657 280 280 * 281 281 * @global wpdb $wpdb WordPress database abstraction object. 282 * @global int[] $wp_actions 282 * @global int[] $wp_actions Stores the number of times each action was triggered. 283 283 */ 284 284 public function stop_the_insanity() { -
trunk/src/wp-admin/includes/class-wp-links-list-table.php
r61456 r61657 43 43 44 44 /** 45 * @global int $cat_id 46 * @global string $s 47 * @global string $orderby 48 * @global string $order 45 * @global int $cat_id Link category ID. 46 * @global string $s Search string. 47 * @global string $orderby The field to order the links by. 48 * @global string $order The direction to order the links. 49 49 */ 50 50 public function prepare_items() { … … 78 78 79 79 /** 80 * Displays the message for no items. 80 81 */ 81 82 public function no_items() { … … 84 85 85 86 /** 87 * Gets the list of bulk actions. 88 * 86 89 * @return array 87 90 */ … … 94 97 95 98 /** 96 * @global int $cat_id 97 * @param string $which 99 * @global int $cat_id Link category ID. 100 * @param string $which The location: 'top' or 'bottom'. 98 101 */ 99 102 protected function extra_tablenav( $which ) { … … 143 146 144 147 /** 148 * Gets the list of sortable columns. 149 * 145 150 * @return array 146 151 */ … … 225 230 * @since 4.3.0 226 231 * 227 * @global int $cat_id 232 * @global int $cat_id Link category ID. 228 233 * 229 234 * @param object $link The current link object. -
trunk/src/wp-admin/includes/class-wp-list-table.php
r61594 r61657 1693 1693 * @since 3.1.0 1694 1694 * 1695 * @param string $which 1695 * @param string $which The location: 'top' or 'bottom'. 1696 1696 */ 1697 1697 protected function extra_tablenav( $which ) {}
Note: See TracChangeset
for help on using the changeset viewer.