WC_Admin_Post_Types::request_data()protectedWC 1.0

Get the current request data ($_REQUEST superglobal). This method is added to ease unit testing.

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

Хуков нет.

Возвращает

Массив. The $_REQUEST superglobal.

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

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

Код WC_Admin_Post_Types::request_data() WC 8.7.0

protected function request_data() {
	return $_REQUEST;
}