WC_Background_Emailer::get_post_args()protectedWC 1.0

Get post args

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

Хуки из метода

Возвращает

Массив.

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

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

Код WC_Background_Emailer::get_post_args() WC 8.7.0

protected function get_post_args() {
	if ( property_exists( $this, 'post_args' ) ) {
		return $this->post_args;
	}

	// Pass cookies through with the request so nonces function.
	$cookies = array();

	foreach ( $_COOKIE as $name => $value ) { // WPCS: input var ok.
		if ( 'PHPSESSID' === $name ) {
			continue;
		}
		$cookies[] = new WP_Http_Cookie( array(
			'name'  => $name,
			'value' => $value,
		) );
	}

	return array(
		'timeout'   => 0.01,
		'blocking'  => false,
		'body'      => $this->data,
		'cookies'   => $cookies,
		'sslverify' => apply_filters( 'https_local_ssl_verify', false ),
	);
}