Automattic\WooCommerce\Internal\Admin\Orders
PageController::output()
Outputs content for the current orders screen.
Метод класса: PageController{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$PageController = new PageController(); $PageController->output(): void;
Код PageController::output() PageController::output WC 9.3.3
public function output(): void { switch ( $this->current_action ) { case 'edit_order': case 'new_order': $this->order_edit_form->display(); break; case 'list_orders': default: $this->orders_table->prepare_items(); $this->orders_table->display(); break; } }