Automattic\WooCommerce\Internal\Admin\Orders
ListTable::__construct
Sets up the admin list table for orders (specifically, for orders managed by the OrdersTableDataStore).
Метод класса: ListTable{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$ListTable = new ListTable(); $ListTable->__construct();
Заметки
- Смотрите: WC_Admin_List_Table_Orders for the corresponding class used in relation to the traditional WP Post store.
Код ListTable::__construct() ListTable:: construct WC 10.8.1
public function __construct() {
parent::__construct(
array(
'singular' => 'order',
'plural' => 'orders',
'ajax' => false,
)
);
}