示例#1
0
文件: Cerbere.php 项目: AF83/morm
 public function getMorphinxFieldName($field)
 {
     $table = $this->getMorphinxTableForField($field);
     if (is_null($table)) {
         return $field;
     }
     return str_replace('`', '', SqlBuilder::selectAlias($table, $field));
 }