Address_List

Summary

No summary available.

Source

File: src/BigCommerce/Shortcodes/Address_List.php

class Address_List implements Shortcode {

	const NAME = 'bigcommerce_shipping_address_list';


	public function __construct() {
	}

	public function render( $attr, $instance ) {
		if ( ! is_user_logged_in() ) {
			return '';
		}

		$controller = Templates\Address_List::factory();

		return $controller->render();
	}

}

Methods


User Contributed Notes

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