Szukaj…


Wprowadzenie

Uzyskaj adresy URL obrazu produktu dla miniatury, małego obrazu i obrazu podstawowego. Uzyskaj także buforowane bezpośrednie adresy URL multimediów bez buforowania.

Adresy URL obrazu w pamięci podręcznej

Mage::helper('catalog/image')->init($item->getProduct(), 'thumbnail');
Mage::helper('catalog/image')->init($item->getProduct(), 'small_image');
Mage::helper('catalog/image')->init($item->getProduct(), 'image');

Niebuforowane adresy URL obrazów z nośnika

Mage::getModel('catalog/product_media_config')->getMediaUrl($product->getThumbnail()); //Thumbnail
Mage::getModel('catalog/product_media_config')->getMediaUrl($product->getSmallImage()); //Small Image
Mage::getModel('catalog/product_media_config')->getMediaUrl($product->getImage()); //Base


Modified text is an extract of the original Stack Overflow Documentation
Licencjonowany na podstawie CC BY-SA 3.0
Nie związany z Stack Overflow