Automattic\WooCommerce\Internal\ProductDownloads\ApprovedDirectories\Admin

Table::__construct()publicWC 1.0

Initialize the webhook table list.

Method of the class: Table{}

No Hooks.

Return

null. Nothing (null).

Usage

$Table = new Table();
$Table->__construct();

Table::__construct() code WC 8.7.0

public function __construct() {
	parent::__construct(
		array(
			'singular' => 'url',
			'plural'   => 'urls',
			'ajax'     => false,
		)
	);

	add_filter( 'manage_woocommerce_page_wc-settings_columns', array( $this, 'get_columns' ) );
	$this->items_per_page();
	set_screen_options();
}