WC_Admin_Log_Table_List::get_columns
Get list columns.
Method of the class: WC_Admin_Log_Table_List{}
No Hooks.
Returns
Array.
Usage
$WC_Admin_Log_Table_List = new WC_Admin_Log_Table_List(); $WC_Admin_Log_Table_List->get_columns();
WC_Admin_Log_Table_List::get_columns() WC Admin Log Table List::get columns code WC 10.3.5
public function get_columns() {
return array(
'cb' => '<input type="checkbox" />',
'timestamp' => __( 'Timestamp', 'woocommerce' ),
'level' => __( 'Level', 'woocommerce' ),
'message' => __( 'Message', 'woocommerce' ),
'source' => __( 'Source', 'woocommerce' ),
'context' => __( 'Context', 'woocommerce' ),
);
}