20 define(
'QP_COMBINATION_AND',
'and');
21 define(
'QP_COMBINATION_OR',
'or');
63 define(
'MIN_WORD_LENGTH', self::MIN_WORD_LENGTH);
67 $this->query_str = $a_query_str;
70 include_once
'./Services/Search/classes/class.ilSearchSettings.php';
85 if (!$a_force and $this->
settings->enabledIndex() and $a_length < 3) {
89 $this->min_word_length = $a_length;
99 if ($a_value !== null) {
100 $a_value = (int) $a_value;
105 $this->global_min_length = $a_value;
115 $this->wildcards_allowed = (bool) $a_value;
125 $this->message = $a_msg;
134 $this->message .=
'<br />';
136 $this->message .= $a_msg;
141 $this->combination = $a_combination;
150 return trim($this->query_str);
154 return $this->words ? $this->words : array();
159 if ($with_quotation) {
160 return $this->quoted_words ? $this->quoted_words : array();
162 foreach ($this->quoted_words as $word) {
163 $tmp_word[] = str_replace(
"\"",
'', $word);
165 return $tmp_word ? $tmp_word : array();
167 return $tmp_word ?? [];
184 $this->words = array();
186 #if(!strlen($this->getQueryString())) 192 foreach ($words as $word) {
193 if (!strlen(trim($word))) {
206 if (!in_array($fullstr, $this->words)) {
212 foreach ($this->words as $idx => $word) {
213 if (!stristr($word,
'\\')) {
214 $word = str_replace(
'%',
'\%', $word);
215 $word = str_replace(
'_',
'\_', $word);
217 $this->words[$idx] = $word;
231 $this->quoted_words[] =
'';
235 while (preg_match(
"/\".*?\"/",
$query_str, $matches)) {
242 foreach ($words as $word) {
243 if (!strlen(trim($word))) {
252 foreach ($this->quoted_words as $idx => $word) {
253 if (!stristr($word,
'\\')) {
254 $word = str_replace(
'%',
'\%', $word);
255 $word = str_replace(
'_',
'\_', $word);
257 $this->quoted_words[$idx] = $word;
270 $this->
setMessage($this->lng->txt(
'msg_no_search_string'));
getQuotedWords($with_quotation=false)
const MIN_WORD_LENGTH
Minimum of characters required for search.
__construct($a_query_str)
Constructor public.
setGlobalMinLength($a_value)
static prepareDBString($a_str)
prepare a string for db writing (insert/update)
setCombination($a_combination)
static getLogger($a_component_id)
Get component logger.
setMinWordLength($a_length, $a_force=false)
setAllowedWildcards($a_value)