How to get woocommerce page urls

{ // deep_execution_view
const authorName = "Ankit Agrawal";
//
const publishDate = "February 14, 2017";

Shop Url

[code lang=”php”]
$aUrl = get_permalink( woocommerce_get_page_id( ‘shop’ ) );
[/code]

Cart Url

[code lang=”php”]
global $woocommerce;
$aUrl = $woocommerce->cart->get_cart_url();
[/code]

Checkout Url

[code lang=”php”]
global $woocommerce;
$aUrl = $woocommerce->cart->get_checkout_url();
[/code]

Account Url

[code lang=”php”]
$aAccountPageId = get_option( ‘woocommerce_myaccount_page_id’ );
$aUrl = get_permalink( $aAccountPageId );
[/code]

}

Add this website to your home screen?