/**
  * This is shown in the last action div of the shopping
  * baskets page after a user has deleted an item from
  * their shopping basket.
  */
 public static function get_deleted_shopping_basket_confirmation_div_for_sbid($shopping_basket_id)
 {
     $product_name = Shop_ShoppingBasketsTable::get_product_name_for_sbid($shopping_basket_id);
     $undo_url = Shop_ShoppingBasketsTable::get_restore_shopping_basket_item_url($shopping_basket_id);
     return self::get_deleted_shopping_basket_confirmation_div($product_name, $undo_url);
 }