Automattic\WooCommerce\Internal\ProductDownloads\ApprovedDirectories\Admin
Table::__construct
Initialize the webhook table list.
Метод класса: Table{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$Table = new Table(); $Table->__construct();
Код Table::__construct() Table:: construct WC 11.0.1
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();
}