00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 class Mage_Rating_Model_Rating extends Mage_Core_Model_Abstract
00035 {
00036 public function __construct()
00037 {
00038 $this->_init('rating/rating');
00039 }
00040
00041 public function addOptionVote($optionId, $entityPkValue)
00042 {
00043 Mage::getModel('rating/rating_option')->setOptionId($optionId)
00044 ->setRatingId($this->getId())
00045 ->setReviewId($this->getReviewId())
00046 ->setEntityPkValue($entityPkValue)
00047 ->addVote();
00048 return $this;
00049 }
00050
00051 public function updateOptionVote($optionId)
00052 {
00053 Mage::getModel('rating/rating_option')->setOptionId($optionId)
00054 ->setVoteId($this->getVoteId())
00055 ->setReviewId($this->getReviewId())
00056 ->setDoUpdate(1)
00057 ->addVote();
00058 return $this;
00059 }
00060
00061
00062
00063
00064
00065
00066 public function getOptions()
00067 {
00068 if ($options = $this->getData('options')) {
00069 return $options;
00070 }
00071 elseif ($id = $this->getId()) {
00072 return Mage::getResourceModel('rating/rating_option_collection')
00073 ->addRatingFilter($id)
00074 ->setPositionOrder()
00075 ->load()
00076 ->getItems();
00077 }
00078 return array();
00079 }
00080
00081
00082
00083
00084
00085
00086
00087 public function getEntitySummary($entityPkValue, $onlyForCurrentStore = true)
00088 {
00089 $this->setEntityPkValue($entityPkValue);
00090 return $this->_getResource()->getEntitySummary($this, $onlyForCurrentStore);
00091 }
00092
00093 public function getReviewSummary($reviewId, $onlyForCurrentStore = true)
00094 {
00095 $this->setReviewId($reviewId);
00096 return $this->_getResource()->getReviewSummary($this, $onlyForCurrentStore);
00097 }
00098 }