コード例 #1
0
ファイル: AbBaseQuery.php プロジェクト: healerkx/AdminBuildr
 public function addCondition($condition)
 {
     if ($this->conditionCount == 0) {
         $this->query->where($condition);
     } else {
         $this->query->addWhere($condition);
     }
     $this->conditionCount += 1;
 }