Changeset 47122 for trunk/src/wp-admin/includes/class-wp-list-table.php
- Timestamp:
- 01/29/2020 12:43:23 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-list-table.php
r47058 r47122 452 452 * @param string[] $actions An array of the available bulk actions. 453 453 */ 454 $this->_actions = apply_filters( "bulk_actions-{$this->screen->id}", $this->_actions ); 454 $this->_actions = apply_filters( "bulk_actions-{$this->screen->id}", $this->_actions ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores 455 455 $two = ''; 456 456 } else { … … 1005 1005 $default = $this->get_default_primary_column_name(); 1006 1006 1007 // If the primary column doesn't exist fall back to the1008 // f irst non-checkbox column.1007 // If the primary column doesn't exist, 1008 // fall back to the first non-checkbox column. 1009 1009 if ( ! isset( $columns[ $default ] ) ) { 1010 1010 $default = WP_List_Table::get_default_primary_column_name(); … … 1036 1036 */ 1037 1037 protected function get_column_info() { 1038 // $_column_headers is already set / cached 1038 // $_column_headers is already set / cached. 1039 1039 if ( isset( $this->_column_headers ) && is_array( $this->_column_headers ) ) { 1040 1040 // Back-compat for list tables that have been manually setting $_column_headers for horse reasons.
Note: See TracChangeset
for help on using the changeset viewer.