Skip to content

Commit e05fb60

Browse files
ENGCOM-4460: Wishlist review summary #21420
- Merge Pull Request #21420 from magenius-team/magento2:wishlist-review-summary - Merged commits: 1. a168c95 2. 0def6c2 3. 473f9a5
2 parents 73b5b92 + 473f9a5 commit e05fb60

File tree

7 files changed

+16
-0
lines changed

7 files changed

+16
-0
lines changed

app/code/Magento/Wishlist/Block/Customer/Wishlist/Item/Column/Actions.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
/**
1515
* @api
16+
* @deprecated
1617
* @since 100.0.2
1718
*/
1819
class Actions extends \Magento\Wishlist\Block\Customer\Wishlist\Item\Column

app/code/Magento/Wishlist/Block/Customer/Wishlist/Item/Column/Comment.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
/**
1515
* @api
16+
* @deprecated
1617
* @since 100.0.2
1718
*/
1819
class Comment extends \Magento\Wishlist\Block\Customer\Wishlist\Item\Column

app/code/Magento/Wishlist/Block/Customer/Wishlist/Item/Column/Edit.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
/**
1515
* @api
16+
* @deprecated
1617
* @since 100.0.2
1718
*/
1819
class Edit extends \Magento\Wishlist\Block\Customer\Wishlist\Item\Column

app/code/Magento/Wishlist/Block/Customer/Wishlist/Item/Column/Info.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
/**
1515
* @api
16+
* @deprecated
1617
* @since 100.0.2
1718
*/
1819
class Info extends \Magento\Wishlist\Block\Customer\Wishlist\Item\Column

app/code/Magento/Wishlist/Block/Customer/Wishlist/Item/Column/Remove.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
/**
1515
* @api
16+
* @deprecated
1617
* @since 100.0.2
1718
*/
1819
class Remove extends \Magento\Wishlist\Block\Customer\Wishlist\Item\Column

app/code/Magento/Wishlist/view/frontend/layout/wishlist_index_index.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
<block class="Magento\Wishlist\Block\Customer\Wishlist\Items" name="customer.wishlist.items" as="items" template="Magento_Wishlist::item/list.phtml" cacheable="false">
1919
<block class="Magento\Wishlist\Block\Customer\Wishlist\Item\Column\Image" name="customer.wishlist.item.image" template="Magento_Wishlist::item/column/image.phtml" cacheable="false"/>
2020
<block class="Magento\Wishlist\Block\Customer\Wishlist\Item\Column\Info" name="customer.wishlist.item.name" template="Magento_Wishlist::item/column/name.phtml" cacheable="false"/>
21+
<block class="Magento\Wishlist\Block\Customer\Wishlist\Item\Column" name="customer.wishlist.item.review" template="Magento_Wishlist::item/column/review.phtml" cacheable="false"/>
2122
<block class="Magento\Wishlist\Block\Customer\Wishlist\Item\Column\Cart" name="customer.wishlist.item.price" template="Magento_Wishlist::item/column/price.phtml" cacheable="false">
2223
<block class="Magento\Catalog\Pricing\Render" name="product.price.render.wishlist">
2324
<arguments>
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?php
2+
/**
3+
* Copyright © Magento, Inc. All rights reserved.
4+
* See COPYING.txt for license details.
5+
*/
6+
7+
/** @var \Magento\Wishlist\Block\Customer\Wishlist\Item\Column $block */
8+
$product = $block->getItem()->getProduct();
9+
?>
10+
<?= $block->getReviewsSummaryHtml($product, 'short') ?>

0 commit comments

Comments
 (0)