예제 #1
0
 /**
  * Whether this search term has an operator of type MCL_OPERATOR_FILTER
  */
 public function isFilter()
 {
     if (!$this->search_operator) {
         return false;
     }
     $cstf = new ConceptSearchTermFactory();
     return $cstf->isFilterOperator($this->search_operator);
 }