You are here

function theme_commerce_wishlist_already_in_wishlist_link in Commerce Wishlist 7.3

Same name and namespace in other branches
  1. 7.2 commerce_wishlist.module \theme_commerce_wishlist_already_in_wishlist_link()

Already in cart link theme callback.

1 theme call to theme_commerce_wishlist_already_in_wishlist_link()
commerce_wishlist_form_alter in ./commerce_wishlist.module
Implements hook_form_alter().

File

./commerce_wishlist.module, line 515
Provides a wish list for use in Drupal Commerce.

Code

function theme_commerce_wishlist_already_in_wishlist_link(&$variables) {
  return t('Already in <a class="in-wishlist" href="@url">your wish list</a>.', array(
    '@url' => url('user/' . $variables['user_id'] . '/wishlist'),
  ));
}