Advertisement
Guest User

Untitled

a guest
Sep 4th, 2015
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. <?php $_manufacturersCollection = $this->getManufacturersCollection(); ?>
  2.  
  3. <div class="block">
  4. <div class="block-title1">
  5. <strong><span><?php echo $this->__('Shop By Manufacturer') ?></span></strong>
  6. </div>
  7. <div class="block-content">
  8. <form id="pollForm" action="<?php echo $this->getUrl('manufacturers') ?>" method="post" >
  9. <?php $_iterator = 0; ?>
  10. <ul class="products-grid first">
  11. <?php foreach ($_manufacturersCollection as $_manufacturer): ?>
  12. <li class="item<?php if (++$_iterator == sizeof($_manufacturersCollection)): ?> last<?php endif; ?>">
  13. <a class="product-images" href="<?php echo $this->getUrl('manufacturers' . '/' . $_manufacturer->getIdentifier()) ?>" title="<?php echo $_manufacturer->getManufacturer() ?>"><img alt="<?php echo $_manufacturer->getManufacturerLogo() ?>" src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA) . 'manufacturer' . '/' . $_manufacturer->getManufacturerLogo() ?>" width="80" height="80"></a>
  14.  
  15. <!-- <h2><?php echo Mage::getModel('perficient_manufacturer/manufacturer')->getManufacturerName($_manufacturer->getManufacturer(), Mage::app()->getStore()->getId()) ?></h2> -->
  16. </li>
  17. <?php endforeach; ?>
  18. </ul>
  19. <div class="actions" style="clear:left;">
  20. <button type="submit" title="<?php echo $this->__('View All123') ?>" class="button"><span><span><?php echo $this->__('View All') ?></span></span></button>
  21. </div>
  22. </form>
  23. </div>
  24. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement