Wishlist_Create::get_data()

Summary

No summary available.

Source

File: src/BigCommerce/Templates/Wishlist_Create.php

	public function get_data() {
		return [
			self::ACTION_URL  => Wishlist::create_url(),
			self::NONCE_FIELD => wp_nonce_field( Create_Wishlist::ACTION, '_wpnonce', true, false ),
			self::PRODUCTS    => array_map( 'intval', $this->options[ self::PRODUCTS ] ),
		];
	}


User Contributed Notes

You must log in before being able to contribute a note or feedback.