Example #1
0
 public function onCalcAdTagCount()
 {
     $tag_id = post('id');
     if (!$tag_id) {
         return false;
     }
     TagModel::updateCount($tag_id);
     return true;
 }