Пример #1
0
 function _getSpecificSearchChunk()
 {
     $stmt = array();
     if ($this->filter->getValue() !== null && $this->filter->getValue() != '') {
         $stmt[] = $this->field . ' = ' . DataAccess::quoteSmart($this->filter->getValue());
     }
     return $stmt;
 }
Пример #2
0
 protected function searchExactMatch($string)
 {
     return $this->da->quoteSmart("%{$string}%");
 }