Automattic\WooCommerce\Internal\Admin\Logging\FileV2

SearchListTable::__constructpublicWC 1.0

SearchListTable class.

Method of the class: SearchListTable{}

No Hooks.

Returns

null. Nothing (null).

Usage

$SearchListTable = new SearchListTable();
$SearchListTable->__construct( $file_controller, $page_controller );
$file_controller(FileController) (required)
Instance of FileController.
$page_controller(PageController) (required)
Instance of PageController.

SearchListTable::__construct() code WC 9.9.5

public function __construct( FileController $file_controller, PageController $page_controller ) {
	$this->file_controller = $file_controller;
	$this->page_controller = $page_controller;

	parent::__construct(
		array(
			'singular' => 'wc-logs-search-result',
			'plural'   => 'wc-logs-search-results',
			'ajax'     => false,
		)
	);
}