Automattic\WooCommerce\Internal\ProductDownloads\ApprovedDirectories\Admin

Table::__construct()publicWC 1.0

Initialize the webhook table list.

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

Хуков нет.

Возвращает

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

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

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

Код Table::__construct() 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();
}