Automattic\WooCommerce\Internal\Admin\Logging\FileV2

FileListTable::prepare_column_headers()publicWC 1.0

Set up the column header info.

Метод класса: FileListTable{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$FileListTable = new FileListTable();
$FileListTable->prepare_column_headers(): void;

Код FileListTable::prepare_column_headers() WC 9.7.1

public function prepare_column_headers(): void {
	$this->_column_headers = array(
		$this->get_columns(),
		get_hidden_columns( $this->screen ),
		$this->get_sortable_columns(),
		$this->get_primary_column(),
	);
}