Automattic\WooCommerce\Internal\Admin\Orders

Edit::get_page_controller()protectedWC 8.0.0

Returns the PageController for this edit form. This method is protected to allow child classes to overwrite the PageController object and return custom links.

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

Хуков нет.

Возвращает

PageController. PageController object.

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

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->get_page_controller();

Список изменений

С версии 8.0.0 Введена.

Код Edit::get_page_controller() WC 9.2.3

protected function get_page_controller() {
	if ( ! isset( $this->orders_page_controller ) ) {
		$this->orders_page_controller = wc_get_container()->get( PageController::class );
	}
	return $this->orders_page_controller;
}