本文整理汇总了PHP中Magento\Catalog\Helper\Image::getLabel方法的典型用法代码示例。如果您正苦于以下问题:PHP Image::getLabel方法的具体用法?PHP Image::getLabel怎么用?PHP Image::getLabel使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Magento\Catalog\Helper\Image
的用法示例。
在下文中一共展示了Image::getLabel方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testGetLabel
/**
* @param array $data
* @param string $expected
* @dataProvider getLabelDataProvider
*/
public function testGetLabel($data, $expected)
{
$imageId = 'test_image_id';
$attributes = [];
$productMock = $this->getMockBuilder('Magento\\Catalog\\Model\\Product')->disableOriginalConstructor()->getMock();
$productMock->expects($this->once())->method('getData')->with($data['type'] . '_' . 'label')->willReturn($data['label']);
$productMock->expects($this->any())->method('getName')->willReturn($expected);
$this->prepareAttributes($data, $imageId);
$this->helper->init($productMock, $imageId, $attributes);
$this->assertEquals($expected, $this->helper->getLabel());
}
示例2: getItems
/**
* Get wishlist items
*
* @return array
*/
protected function getItems()
{
$this->view->loadLayout();
$collection = $this->wishlistHelper->getWishlistItemCollection();
$collection->clear()->setPageSize(self::SIDEBAR_ITEMS_NUMBER)->setInStockFilter(true)->setOrder('added_at');
$items = [];
/** @var \Magento\Wishlist\Model\Item $wishlistItem */
foreach ($collection as $wishlistItem) {
$product = $wishlistItem->getProduct();
$this->imageHelper->init($product, 'wishlist_sidebar_block');
$items[] = ['image' => ['src' => $this->imageHelper->getUrl(), 'alt' => $this->imageHelper->getLabel(), 'width' => $this->imageHelper->getWidth(), 'height' => $this->imageHelper->getHeight()], 'product_url' => $this->wishlistHelper->getProductUrl($wishlistItem), 'product_name' => $product->getName(), 'product_price' => $this->block->getProductPriceHtml($product, \Magento\Catalog\Pricing\Price\ConfiguredPriceInterface::CONFIGURED_PRICE_CODE, \Magento\Framework\Pricing\Render::ZONE_ITEM_LIST, ['item' => $wishlistItem]), 'product_is_saleable_and_visible' => $product->isSaleable() && $product->isVisibleInSiteVisibility(), 'product_has_required_options' => $product->getTypeInstance()->hasRequiredOptions($product), 'add_to_cart_params' => $this->wishlistHelper->getAddToCartParams($wishlistItem, true), 'delete_item_params' => $this->wishlistHelper->getRemoveParams($wishlistItem, true)];
}
return $items;
}