예제 #1
0
파일: Contact.php 프로젝트: ajaboa/crmpuan
 public function getFindSearchQueryParamFields($prefixTable = 't', $withCustomFields = true)
 {
     $fields = parent::getFindSearchQueryParamFields($prefixTable, $withCustomFields);
     $fields[] = "CONCAT(t.first_name,' ',t.middle_name,' ',t.last_name)";
     return $fields;
 }