Product::get_property( $property )

Summary

No summary available.

Source

File: src/BigCommerce/Post_Types/Product/Product.php

	public function get_property( $property ) {
		$data = $this->get_source_data();
		if ( empty( $data ) ) {
			return null;
		}
		if ( isset( $data->$property ) ) {
			return $data->$property;
		}

		return null;
	}


User Contributed Notes

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