Guest User

Untitled

a guest
Jun 22nd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <?php
  2.  
  3. $select = $this->getLayout()->createBlock('core/html_select')
  4. ->setName($type.'[region]')
  5. ->setId($type.':region')
  6. ->setTitle(Mage::helper('checkout')->__('State/Province'))
  7. ->setClass('required-entry validate-state')
  8. ->setValue($this->getAddress()->getRegionId())
  9. ->setOptions($this->getRegionCollection()->toOptionArray());
  10.  
  11. echo $select->getHtml();
  12.  
  13. ?>
Add Comment
Please, Sign In to add comment