WC_Admin_Log_Table_List::prepare_column_headers()protectedWC 1.0

Set _column_headers property for table list

Method of the class: WC_Admin_Log_Table_List{}

No Hooks.

Return

null. Nothing (null).

Usage

// protected - for code of main (parent) or child class
$result = $this->prepare_column_headers();

WC_Admin_Log_Table_List::prepare_column_headers() code WC 8.7.0

protected function prepare_column_headers() {
	$this->_column_headers = array(
		$this->get_columns(),
		array(),
		$this->get_sortable_columns(),
	);
}