Exemplo n.º 1
0
 public function loadStoreIds(Mage_Poll_Model_Poll $object)
 {
     $pollId = $object->getId();
     $storeIds = array();
     if ($pollId) {
         $select = $this->_getReadAdapter()->select()->from($this->getTable('poll/poll_store'), 'store_id')->where('poll_id = ?', $pollId);
         $storeIds = $this->_getReadAdapter()->fetchCol($select);
     }
     $object->setStoreIds($storeIds);
 }
 public function loadStoreIds(Mage_Poll_Model_Poll $object)
 {
     $pollId = $object->getId();
     $storeIds = array();
     if ($pollId) {
         $storeIds = $this->lookupStoreIds($pollId);
     }
     $object->setStoreIds($storeIds);
 }