Wishlist_List::get_data()

Summary

No summary available.

Source

File: src/BigCommerce/Templates/Wishlist_List.php

	public function get_data() {
		$lists = $this->options[ self::WISHLISTS ];
		if ( ! is_array( $lists ) ) {
			$lists = [];
		}

		return [
			self::WISHLISTS => array_map( [ $this, 'render_list_row' ], $lists ),
			self::CREATE    => $this->create_list_form(),
		];
	}

User Contributed Notes

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