WC_Admin_Log_Table_List::get_sortable_columns()
Get a list of sortable columns.
Method of the class: WC_Admin_Log_Table_List{}
No Hooks.
Return
Array
.
Usage
// protected - for code of main (parent) or child class $result = $this->get_sortable_columns();
WC_Admin_Log_Table_List::get_sortable_columns() WC Admin Log Table List::get sortable columns code WC 9.8.2
protected function get_sortable_columns() { return array( 'timestamp' => array( 'timestamp', true ), 'level' => array( 'level', true ), 'source' => array( 'source', true ), ); }