Changeset 61698
- Timestamp:
- 02/19/2026 11:50:05 PM (8 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-ms-sites-list-table.php
r61444 r61698 51 51 52 52 /** 53 * @return bool 53 * Checks if the current user has permissions to manage sites. 54 * 55 * @since 3.1.0 56 * 57 * @return bool Whether the user can manage sites. 54 58 */ 55 59 public function ajax_user_can() { … … 63 67 * 64 68 * @global string $mode List table view mode. 65 * @global string $s 69 * @global string $s Search string. 66 70 * @global wpdb $wpdb WordPress database abstraction object. 67 71 */ … … 207 211 208 212 /** 213 * Displays a message when no sites are found. 214 * 215 * @since 3.1.0 209 216 */ 210 217 public function no_items() { … … 287 294 288 295 /** 289 * @return array 296 * Gets an associative array of bulk actions for this table. 297 * 298 * @since 3.1.0 299 * 300 * @return array<string, string> An associative array of bulk actions. 290 301 */ 291 302 protected function get_bulk_actions() { … … 301 312 302 313 /** 314 * Displays the pagination. 315 * 316 * @since 3.1.0 317 * 303 318 * @global string $mode List table view mode. 304 319 * … … 360 375 361 376 /** 377 * Gets an array of column titles keyed by their column name. 378 * 379 * @since 3.1.0 380 * 362 381 * @return string[] Array of column titles keyed by their column name. 363 382 */ … … 387 406 388 407 /** 389 * @return array 408 * Gets an array of sortable columns. 409 * 410 * @since 3.1.0 411 * 412 * @return array<string, mixed> An array of sortable columns. 390 413 */ 391 414 protected function get_sortable_columns() { … … 641 664 * @since 5.3.0 642 665 * 643 * @param array $site666 * @param array<string, mixed> $site An array of site data. 644 667 */ 645 668 protected function site_states( $site ) {
Note: See TracChangeset
for help on using the changeset viewer.