Review_List::get_data()

Summary

No summary available.

Source

File: src/BigCommerce/Templates/Review_List.php

	public function get_data() {
		$data = [
			self::REVIEWS        => $this->options[ self::REVIEWS ],
			self::FIRST_PAGE_URL => $this->options[ self::FIRST_PAGE_URL ],
			self::PAGINATION     => $this->get_pagination( $this->options[ self::FIRST_PAGE_URL ], $this->options[ self::NEXT_PAGE_URL ] ),
			self::WRAP           => $this->options[ self::WRAP ],
		];

		return $data;
	}

User Contributed Notes

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