Store_Api::get_domain()

Summary

Get store domain


Return

(bool)


Source

File: src/BigCommerce/Api/Store_Api.php

	public function get_domain() {
		$resource = $this->get_store_resource();

		/**
		 * get_store_resource() may return false value.
		 * This will cause an issue when we try to access property on non-object
		 */
		return $this->store_resource_exists( $resource, 'domain' );
	}


User Contributed Notes

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