Ejemplo n.º 1
0
 /**
  * Gets the default post multiplier for a post
  *
  * @param Bronto_Reviews_Model_Post_Purchase $post
  * @param int $store_id
  * @return boolean
  */
 public function getDefaultMultiplier($post, $storeId = 0)
 {
     if (is_null($post->getMultiplyByQty())) {
         return $this->getPostMultiplier('store', $storeId);
     }
     return (int) $post->getMultiplyByQty();
 }