Пример #1
0
 /**
  * Build a string for onscreen display showing the
  *   query used in the search (not the filters).
  *
  * @return string user friendly version of 'query'
  */
 public function getDisplayQuery()
 {
     // For display purposes, undo the query manipulation performed above
     // in initBasicSearch():
     $q = parent::getDisplayQuery();
     return str_replace('\\"', '"', substr($q, 1, -1));
 }