commerce-wishlist-share-wishlist.tpl.php in Commerce Wishlist 7.2
Same filename and directory in other branches
Template file for sharing a wishlist URL.
Available variables: $account - The user account that the wishlist belongs to.
1 theme call to commerce-wishlist-share-wishlist.tpl.php
- commerce_wishlist_block_view in ./
commerce_wishlist.module - Implements hook_block_view().
File
templates/commerce-wishlist-share-wishlist.tpl.phpView source
<?php
/**
* @file
* Template file for sharing a wishlist URL.
*
* Available variables:
* $account - The user account that the wishlist belongs to.
*/
?>
<div class="commerce-wishlist-share">
<p class="commerce-wishlist-share-description">
<?php
print t('Share your wishlist with your friends and family with the link below!');
?>
</p>
<p class="commerce-wishlist-share-url">
<?php
print url('user/' . $account->uid . '/wishlist', array(
'absolute' => TRUE,
));
?>
</p>
</div>