- Timestamp:
- 02/02/2019 03:14:25 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-groups/classes/class-bp-groups-list-table.php
r11530 r12331 418 418 */ 419 419 public function get_sortable_columns() { 420 return array( 420 421 /** 422 * Filters the column names for the sortable columns. 423 * 424 * @since 5.0.0 425 * 426 * @param array $value Array of keys and their values. 427 */ 428 return apply_filters( 'bp_groups_list_table_get_sortable_columns', array( 421 429 'gid' => array( 'gid', false ), 422 430 'comment' => array( 'name', false ), 423 431 'members' => array( 'members', false ), 424 432 'last_active' => array( 'last_active', false ), 425 ) ;433 ) ); 426 434 } 427 435
Note: See TracChangeset
for help on using the changeset viewer.