Automattic\WooCommerce\Internal\Admin\Logging\FileV2
SearchListTable::get_columns
Gets a list of columns.
Method of the class: SearchListTable{}
No Hooks.
Returns
Array.
Usage
$SearchListTable = new SearchListTable(); $SearchListTable->get_columns(): array;
SearchListTable::get_columns() SearchListTable::get columns code WC 10.8.1
public function get_columns(): array {
$columns = array(
'file_id' => esc_html__( 'File', 'woocommerce' ),
'line_number' => esc_html__( 'Line #', 'woocommerce' ),
'line' => esc_html__( 'Matched Line', 'woocommerce' ),
);
return $columns;
}