Example #1
0
 /**
  * saves the ads review rates recalculating it
  * @return [type] [description]
  */
 public function recalculate_rate()
 {
     if ($this->loaded()) {
         //get all the rates and divide by them
         $this->rate = Model_Review::get_ad_rate($this);
         $this->save();
         return $this->rate;
     }
     return FALSE;
 }