Project

General

Profile

1
<?php
2

    
3
// $Id: search.php 764 2008-03-24 15:51:23Z thorn $
4

    
5
/*
6

    
7
 Website Baker Project <http://www.websitebaker.org/>
8
 Copyright (C) 2004-2008, Ryan Djurovich
9

    
10
 Website Baker is free software; you can redistribute it and/or modify
11
 it under the terms of the GNU General Public License as published by
12
 the Free Software Foundation; either version 2 of the License, or
13
 (at your option) any later version.
14

    
15
 Website Baker is distributed in the hope that it will be useful,
16
 but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 GNU General Public License for more details.
19

    
20
 You should have received a copy of the GNU General Public License
21
 along with Website Baker; if not, write to the Free Software
22
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23

    
24
*/
25

    
26
// we have to do some cleanup here, ASAP!
27

    
28
if(!defined('WB_URL')) { 
29
	header('Location: index.php');
30
	exit(0);
31
}
32

    
33
// Include the WB functions file
34
require_once(WB_PATH.'/framework/functions.php');
35

    
36
// Check if search is enabled
37
if(SHOW_SEARCH != true) {
38
	echo $TEXT['SEARCH'].' '.$TEXT['DISABLED'];
39
	return;
40
}
41

    
42
// search-module-extension: get helper-functions
43
require_once(WB_PATH.'/search/search_modext.php');
44
// search-module-extension: Get "search.php" for each module, if present
45
// looks in modules/module/ and modules/module_searchext/
46
$search_funcs = array();
47
$query = $database->query("SELECT DISTINCT directory FROM ".TABLE_PREFIX."addons WHERE type = 'module' AND directory NOT LIKE '%_searchext'");
48
if($query->numRows() > 0) {
49
	while($module = $query->fetchRow()) {
50
		$func_name = $module['directory']."_search";
51
		$file = WB_PATH.'/modules/'.$module['directory'].'/search.php';
52
		if(!file_exists($file)) {
53
			$file = WB_PATH.'/modules/'.$module['directory'].'_searchext/search.php';
54
			if(!file_exists($file)) {
55
				$file='';
56
			}
57
		}
58
		if($file!='') {
59
			include_once($file);
60
			if(function_exists($module['directory']."_search")) {
61
				$search_funcs[$module['directory']] = $func_name;
62
			}
63
		}
64
	}
65
}
66

    
67
// Get the search type
68
$match = 'all';
69
if(isset($_REQUEST['match'])) {
70
	$match = $wb->add_slashes(strip_tags($_REQUEST['match']));
71
}
72

    
73
// Get the path to search into. Normally left blank
74
/* possible values:
75
 * - a single path: "/en/" - search only pages whose link contains 'path' ("/en/machinery/bender-x09")
76
 * - a bunch of alternative pathes: "/en/,/machinery/,docs/" - alternatives paths, seperated by comma
77
 * - a bunch of paths to exclude: "-/about,/info,/jp/,/light" - search all, exclude these.
78
 * These different styles can't be mixed.
79
 */
80
$search_path_SQL = "";
81
$search_path = "";
82
if(isset($_REQUEST['search_path'])) {
83
	$search_path = $wb->add_slashes($_REQUEST['search_path']);
84
	if(!preg_match('~^[-a-zA-Z0-9_,/ ]+$~', $search_path))
85
		$search_path = '';
86
	if($search_path != '') {
87
		$search_path_SQL = "AND ( ";
88
		$not = "";
89
		$op = "OR";
90
		if($search_path[0] == '-') {
91
			$not = "NOT";
92
			$op = "AND";
93
			$paths = explode(',', substr($search_path, 1) );
94
		} else {
95
			$paths = explode(',',$search_path);
96
		}
97
		$i=0;
98
		foreach($paths as $p) {
99
			if($i++ > 0) {
100
				$search_path_SQL .= " $op";
101
			}
102
			$search_path_SQL .= " link $not LIKE '%$p%'";			
103
		}
104
		$search_path_SQL .= " )";
105
	}
106
}
107

    
108
// TODO: with the new method, there is no need for search_entities_string anymore.
109
//   When the old method disappears, it can be removed, too.
110
//   BTW: in this case, there is no need for 
111
//   $text = umlauts_to_entities(strip_tags($content), strtoupper(DEFAULT_CHARSET), 0);
112
//   in wb/modules/wysiwyg/save.php anymore, too. Change that back to $text=strip_tags($content);
113

    
114
// Get search string
115
$search_normal_string = 'unset'; // for regex
116
$search_entities_string = 'unset'; // for SQL's LIKE
117
$search_display_string = ''; // for displaying
118
$string = '';
119
if(isset($_REQUEST['string'])) {
120
	if ($match!='exact') {
121
		$string=str_replace(',', '', $_REQUEST['string']);
122
	} else {
123
		$string=$_REQUEST['string']; // $string will be cleaned below
124
	}
125
	// redo possible magic quotes
126
	$string = $wb->strip_slashes($string);
127
	$string = trim($string);
128
	// remove some bad chars
129
	$string = preg_replace('/(^|\s+)[|.]+(?=\s+|$)/', '', $string);
130
	$search_display_string = htmlspecialchars($string);
131
	// convert string to utf-8
132
	$string = entities_to_umlauts($string, 'UTF-8');
133
	$search_entities_string = addslashes(umlauts_to_entities(htmlspecialchars($string)));
134
	// mySQL needs four backslashes to match one in LIKE comparisons)
135
	$search_entities_string = str_replace('\\\\', '\\\\\\\\', $search_entities_string);
136
	// quote ' " and /  -we need quoted / for regex
137
	$search_url_string = $string;
138
	$string = preg_quote($string);
139
	$search_normal_string = str_replace(array('\'','"','/'), array('\\\'','\"','\/'), $string);
140
}
141

    
142
// Get list of usernames and display names
143
$query = $database->query("SELECT user_id,username,display_name FROM ".TABLE_PREFIX."users");
144
$users = array('0' => array('display_name' => $TEXT['UNKNOWN'], 'username' => strtolower($TEXT['UNKNOWN'])));
145
if($query->numRows() > 0) {
146
	while($user = $query->fetchRow()) {
147
		$users[$user['user_id']] = array('display_name' => $user['display_name'], 'username' => $user['username']);
148
	}
149
}
150

    
151
// Get search settings
152
$query = $database->query("SELECT value FROM ".TABLE_PREFIX."search WHERE name = 'header' LIMIT 1");
153
$fetch_header = $query->fetchRow();
154
$query = $database->query("SELECT value FROM ".TABLE_PREFIX."search WHERE name = 'footer' LIMIT 1");
155
$fetch_footer = $query->fetchRow();
156
$query = $database->query("SELECT value FROM ".TABLE_PREFIX."search WHERE name = 'results_header' LIMIT 1");
157
$fetch_results_header = $query->fetchRow();
158
$query = $database->query("SELECT value FROM ".TABLE_PREFIX."search WHERE name = 'results_footer' LIMIT 1");
159
$fetch_results_footer = $query->fetchRow();
160
$query = $database->query("SELECT value FROM ".TABLE_PREFIX."search WHERE name = 'results_loop' LIMIT 1");
161
$fetch_results_loop = $query->fetchRow();
162
$query = $database->query("SELECT value FROM ".TABLE_PREFIX."search WHERE name = 'no_results' LIMIT 1");
163
$fetch_no_results = $query->fetchRow();
164
$query = $database->query("SELECT value FROM ".TABLE_PREFIX."search WHERE name = 'module_order' LIMIT 1");
165
if($query->numRows() > 0) { $fetch_module_order = $query->fetchRow();
166
} else { $fetch_module_order['value'] = ""; }
167
$query = $database->query("SELECT value FROM ".TABLE_PREFIX."search WHERE name = 'max_excerpt' LIMIT 1");
168
if($query->numRows() > 0) { $fetch_max_excerpt = $query->fetchRow();
169
} else { $fetch_max_excerpt['value'] = '15'; }
170
$search_max_excerpt = (int)$fetch_max_excerpt['value'];
171
$query = $database->query("SELECT value FROM ".TABLE_PREFIX."search WHERE name = 'cfg_show_description' LIMIT 1");
172
if($query->numRows() > 0) { $fetch_cfg_show_description = $query->fetchRow();
173
} else { $fetch_cfg_show_description['value'] = 'true'; }
174
if($fetch_cfg_show_description['value'] == 'false') { $cfg_show_description = false;
175
} else { $cfg_show_description = true; }
176
$query = $database->query("SELECT value FROM ".TABLE_PREFIX."search WHERE name = 'cfg_search_description' LIMIT 1");
177
if($query->numRows() > 0) { $fetch_cfg_search_description = $query->fetchRow();
178
} else { $fetch_cfg_search_description['value'] = 'true'; }
179
if($fetch_cfg_search_description['value'] == 'false') { $cfg_search_description = false;
180
} else { $cfg_search_description = true; }
181
$query = $database->query("SELECT value FROM ".TABLE_PREFIX."search WHERE name = 'cfg_search_keywords' LIMIT 1");
182
if($query->numRows() > 0) { $fetch_cfg_search_keywords = $query->fetchRow();
183
} else { $fetch_cfg_search_keywords['value'] = 'true'; }
184
if($fetch_cfg_search_keywords['value'] == 'false') { $cfg_search_keywords = false;
185
} else { $cfg_search_keywords = true; }
186
$query = $database->query("SELECT value FROM ".TABLE_PREFIX."search WHERE name = 'cfg_enable_old_search' LIMIT 1");
187
if($query->numRows() > 0) { $fetch_cfg_enable_old_search = $query->fetchRow();
188
} else { $fetch_cfg_enable_old_search['value'] = 'true'; }
189
if($fetch_cfg_enable_old_search['value'] == 'false') { $cfg_enable_old_search = false;
190
} else { $cfg_enable_old_search = true; }
191
$query = $database->query("SELECT value FROM ".TABLE_PREFIX."search WHERE name = 'cfg_enable_flush' LIMIT 1");
192
if($query->numRows() > 0) { $fetch_cfg_enable_flush = $query->fetchRow();
193
} else { $fetch_cfg_enable_flush['value'] = 'false'; }
194
if($fetch_cfg_enable_flush['value'] == 'false') { $cfg_enable_flush = false;
195
} else { $cfg_enable_flush = true; }
196
// Replace vars in search settings with values
197
$vars = array('[SEARCH_STRING]', '[WB_URL]', '[PAGE_EXTENSION]', '[TEXT_RESULTS_FOR]');
198
$values = array($search_display_string, WB_URL, PAGE_EXTENSION, $TEXT['RESULTS_FOR']);
199
$search_footer = str_replace($vars, $values, ($fetch_footer['value']));
200
$search_results_header = str_replace($vars, $values, ($fetch_results_header['value']));
201
$search_results_footer = str_replace($vars, $values, ($fetch_results_footer['value']));
202
$search_module_order = $fetch_module_order['value'];
203

    
204
// check $search_max_excerpt
205
if(!is_numeric($search_max_excerpt)) {
206
	$search_max_excerpt = 15;
207
}
208

    
209
// Work-out what to do (match all words, any words, or do exact match), and do relevant with query settings
210
$all_checked = '';
211
$any_checked = '';
212
$exact_checked = '';
213
$search_normal_array = array();
214
$search_entities_array = array();
215
if($match != 'exact') {
216
	// Split string into array with explode() function
217
	$exploded_string = explode(' ', $search_normal_string);
218
	// Make sure there is no blank values in the array
219
	foreach($exploded_string AS $each_exploded_string) {
220
		if($each_exploded_string != '') {
221
			$search_normal_array[] = $each_exploded_string;
222
		}
223
	}
224
	// Split $string_entities, too
225
	$exploded_string = explode(' ', $search_entities_string);
226
	// Make sure there is no blank values in the array
227
	foreach($exploded_string AS $each_exploded_string) {
228
		if($each_exploded_string != '') {
229
			$search_entities_array[] = $each_exploded_string;
230
		}
231
	}
232
	if ($match == 'any') {
233
		$any_checked = ' checked="checked"';
234
		$logical_operator = ' OR';
235
	} else {
236
		$all_checked = ' checked="checked"';
237
		$logical_operator = ' AND';
238
	}
239
} else {
240
	$exact_checked = ' checked="checked"';
241
	$exact_string=$search_normal_string;
242
	$search_normal_array[]=$exact_string;
243
	$exact_string=$search_entities_string;
244
	$search_entities_array[]=$exact_string;
245
}	
246
// make an extra copy of search-string for use in a regex and another one for url
247
require_once(WB_PATH.'/search/search_convert.php');
248
$search_words = array();
249
foreach ($search_normal_array AS $str) {
250
	$str = strtr($str, $string_ul_umlauts);
251
	// special-feature: '|' means word-boundary (\b). Searching for 'the|' will find the, but not thema.
252
	// this doesn't work correctly for unicode-chars: '|test' will work, but '|über' not.
253
	$str = strtr($str, array('\\|'=>'\b'));
254
	$search_words[] = $str;
255
}
256
$search_url_array=explode(' ', $search_url_string);
257

    
258
// Do extra vars/values replacement
259
$vars = array('[SEARCH_STRING]', '[WB_URL]', '[PAGE_EXTENSION]', '[TEXT_SEARCH]', '[TEXT_ALL_WORDS]', '[TEXT_ANY_WORDS]', '[TEXT_EXACT_MATCH]', '[TEXT_MATCH]', '[TEXT_MATCHING]', '[ALL_CHECKED]', '[ANY_CHECKED]', '[EXACT_CHECKED]', '[REFERRER_ID]', '[SEARCH_PATH]');
260
$values = array($search_display_string, WB_URL, PAGE_EXTENSION, $TEXT['SEARCH'], $TEXT['ALL_WORDS'], $TEXT['ANY_WORDS'], $TEXT['EXACT_MATCH'], $TEXT['MATCH'], $TEXT['MATCHING'], $all_checked, $any_checked, $exact_checked, REFERRER_ID, $search_path);
261
$search_header = str_replace($vars, $values, ($fetch_header['value']));
262
$vars = array('[TEXT_NO_RESULTS]');
263
$values = array($TEXT['NO_RESULTS']);
264
$search_no_results = str_replace($vars, $values, ($fetch_no_results['value']));
265

    
266
// Show search header
267
echo $search_header;
268
// Show search results_header
269
echo $search_results_header;
270

    
271
// Work-out if the user has already entered their details or not
272
if($search_normal_string != '') {
273

    
274
	// Get modules
275
	$table = TABLE_PREFIX."sections";
276
	$get_modules = $database->query("SELECT DISTINCT module FROM $table WHERE module != '' ");
277
	$modules = array();
278
	if($get_modules->numRows() > 0) {
279
		while($module = $get_modules->fetchRow()) {
280
			$modules[] = $module['module']; // $modules is an array of strings
281
		}
282
	}
283

    
284
	// sort module search-order
285
	// get the modules from $search_module_order first ...
286
	$sorted_modules = array();
287
	$m = count($modules);
288
	$search_modules = explode(',', $search_module_order);
289
	foreach($search_modules AS $item) {
290
		$item = trim($item);
291
		for($i=0; $i < $m; $i++) {
292
			if(isset($modules[$i]) && $modules[$i] == $item) {
293
				$sorted_modules[] = $modules[$i];
294
				unset($modules[$i]);
295
				break;
296
			}
297
		}
298
	}
299
	// ... then add the rest
300
	foreach($modules AS $item) {
301
		$sorted_modules[] = $item;
302
	}
303

    
304
	// First, use an alternative search-method, without sql's 'LIKE'.
305
	// 'LIKE' won't find upper/lower-variants of umlauts, cyrillic or greek chars without propperly set setlocale();
306
	// and even if setlocale() is set, it won't work for multi-linguale sites.
307
	// Use the search-module-extension instead.
308
	// This is somewhat slower than the orginial method.
309
	$seen_pages = array(); // seen pages per module.
310
	$pages_listed = array(); // seen pages.
311
	foreach($sorted_modules AS $module_name) {
312
		$seen_pages[$module_name] = array();
313
		if(!isset($search_funcs[$module_name])) {
314
			continue; // there is no search_func for this module
315
		}
316
		// get each section for $module_name
317
		$table_s = TABLE_PREFIX."sections";	
318
		$table_p = TABLE_PREFIX."pages";
319
		$sections_query = $database->query("
320
			SELECT s.section_id, s.page_id, s.module, s.publ_start, s.publ_end,
321
			       p.page_title, p.menu_title, p.link, p.description, p.keywords, p.modified_when, p.modified_by,
322
			       p.visibility, p.viewing_groups, p.viewing_users
323
			FROM $table_s AS s INNER JOIN $table_p AS p ON s.page_id = p.page_id
324
			WHERE s.module = '$module_name' AND p.visibility NOT IN ('none','deleted') AND p.searching = '1' $search_path_SQL
325
			ORDER BY s.section_id, s.position ASC
326
		");
327
		if($sections_query->numRows() > 0) {
328
			while($res = $sections_query->fetchRow()) {
329
				// Only show this section if it is not "out of publication-date"
330
				$now = time();
331
				if( !( $now<$res['publ_end'] && ($now>$res['publ_start'] || $res['publ_start']==0) ||
332
					$now>$res['publ_start'] && $res['publ_end']==0) ) {
333
					continue;
334
				}
335
				$search_func_vars = array(
336
					'database' => $database,
337
					'page_id' => $res['page_id'],
338
					'section_id' => $res['section_id'],
339
					'page_title' => $res['menu_title'], // had to change this, since the link is build from page_title (changeset #593)
340
					'page_menu_title' => $res['page_title'],
341
					'page_description' => ($cfg_show_description?$res['description']:""),
342
					'page_keywords' => $res['keywords'],
343
					'page_link' => $res['link'],
344
					'page_modified_when' => $res['modified_when'],
345
					'page_modified_by' => $res['modified_by'],
346
					'users' => $users,
347
					'search_words' => $search_words, // needed for preg_match_all
348
					'search_match' => $match,
349
					'search_url_array' => $search_url_array, // needed for url-string only
350
					'results_loop_string' => $fetch_results_loop['value'],
351
					'default_max_excerpt' => $search_max_excerpt,
352
					'enable_flush' => $cfg_enable_flush
353
				);
354
				// Only show this page if we are allowed to see it
355
				if($admin->page_is_visible($res) == false) {
356
					if($res['visibility'] == 'registered') { // don't show excerpt
357
						$search_func_vars['default_max_excerpt'] = 0;
358
						$search_func_vars['page_description'] = $TEXT['REGISTERED'];
359
					} else { // private
360
						continue;
361
					}
362
				}
363
				$uf_res = call_user_func($search_funcs[$module_name], $search_func_vars);
364
				if($uf_res) {
365
					$pages_listed[$res['page_id']] = true;
366
					$seen_pages[$module_name][$res['page_id']] = true;
367
				} else {
368
					$seen_pages[$module_name][$res['page_id']] = true;
369
				}
370
			}
371
		}
372
	}
373

    
374
	// Search page details only, such as description, keywords, etc, but only of unseen pages.
375
	$max_excerpt_num = 0; // we don't want excerpt here
376
	$divider = ".";
377
	$table = TABLE_PREFIX."pages";
378
	$query_pages = $database->query("
379
		SELECT page_id, page_title, menu_title, link, description, keywords, modified_when, modified_by,
380
		       visibility, viewing_groups, viewing_users
381
		FROM $table
382
		WHERE visibility NOT IN ('none','deleted') AND searching = '1' $search_path_SQL"
383
	);
384
	if($query_pages->numRows() > 0) {
385
		while($page = $query_pages->fetchRow()) {
386
			if (isset($pages_listed[$page['page_id']])) {
387
				continue;
388
			}
389
			$func_vars = array(
390
				'database' => $database,
391
				'page_id' => $page['page_id'],
392
				'page_title' => $page['menu_title'], // had to change this, since the link is build from page_title (changeset #593)
393
				'page_menu_title' => $page['page_title'],
394
				'page_description' => ($cfg_show_description?$page['description']:""),
395
				'page_keywords' => $page['keywords'],
396
				'page_link' => $page['link'],
397
				'page_modified_when' => $page['modified_when'],
398
				'page_modified_by' => $page['modified_by'],
399
				'users' => $users,
400
				'search_words' => $search_words, // needed for preg_match_all
401
				'search_match' => $match,
402
				'search_url_array' => $search_url_array, // needed for url-string only
403
				'results_loop_string' => $fetch_results_loop['value'],
404
				'default_max_excerpt' => $max_excerpt_num,
405
				'enable_flush' => $cfg_enable_flush
406
			);
407
			// Only show this page if we are allowed to see it
408
			if($admin->page_is_visible($page) == false) {
409
				if($page['visibility'] != 'registered') {
410
					continue;
411
				} else { // page: registered, user: access denied
412
					$func_vars['page_description'] = 'registered';
413
				}
414
			}
415
			if($admin->page_is_active($page) == false) {
416
				continue;
417
			}
418
			$text = $func_vars['page_title'].$divider
419
				.$func_vars['page_menu_title'].$divider
420
				.($cfg_search_description?$func_vars['page_description']:"").$divider
421
				.($cfg_search_keywords?$func_vars['page_keywords']:"").$divider;
422
			$mod_vars = array(
423
				'page_link' => $func_vars['page_link'],
424
				'page_link_target' => "",
425
				'page_title' => $func_vars['page_title'],
426
				'page_description' => $func_vars['page_description'],
427
				'page_modified_when' => $func_vars['page_modified_when'],
428
				'page_modified_by' => $func_vars['page_modified_by'],
429
				'text' => $text,
430
				'max_excerpt_num' => $func_vars['default_max_excerpt']
431
			);
432
			if(print_excerpt2($mod_vars, $func_vars)) {
433
				$pages_listed[$page['page_id']] = true;
434
			}
435
		}
436
	}
437

    
438
	// Now use the old method for pages not displayed by the new method above
439
	// in case someone has old modules without search.php.
440

    
441
	// Get modules
442
	$table_search = TABLE_PREFIX."search";
443
	$table_sections = TABLE_PREFIX."sections";
444
	$get_modules = $database->query("
445
		SELECT DISTINCT s.value, s.extra
446
		FROM $table_search AS s INNER JOIN $table_sections AS sec
447
			ON s.value = sec.module
448
		WHERE s.name = 'module'
449
	");
450
	$modules = array();
451
	if($get_modules->numRows() > 0) {
452
		while($module = $get_modules->fetchRow()) {
453
			$modules[] = $module; // $modules in an array of arrays
454
		}
455
	}
456
	// sort module search-order
457
	// get the modules from $search_module_order first ...
458
	$sorted_modules = array();
459
	$m = count($modules);
460
	$search_modules = explode(',', $search_module_order);
461
	foreach($search_modules AS $item) {
462
		$item = trim($item);
463
		for($i=0; $i < $m; $i++) {
464
			if(isset($modules[$i]) && $modules[$i]['value'] == $item) {
465
				$sorted_modules[] = $modules[$i];
466
				unset($modules[$i]);
467
				break;
468
			}
469
		}
470
	}
471
	// ... then add the rest
472
	foreach($modules AS $item) {
473
		$sorted_modules[] = $item;
474
	}
475

    
476
	if($cfg_enable_old_search) {
477
		$search_path_SQL = str_replace(' link ', ' '.TABLE_PREFIX.'pages.link ', $search_path_SQL);
478
		foreach($sorted_modules AS $module) {
479
			$query_start = '';
480
			$query_body = '';
481
			$query_end = '';
482
			$prepared_query = '';
483
			// Get module name
484
			$module_name = $module['value'];
485
			if(!isset($seen_pages[$module_name])) {
486
				$seen_pages[$module_name]=array();
487
			}
488
			// skip module 'code' - it doesn't make sense to search in a code section
489
			if($module_name=="code")
490
				continue;
491
			// Get fields to use for title, link, etc.
492
			$fields = unserialize($module['extra']);
493
			// Get query start
494
			$get_query_start = $database->query("SELECT value FROM ".TABLE_PREFIX."search WHERE name = 'query_start' AND extra = '$module_name' LIMIT 1");
495
			if($get_query_start->numRows() > 0) {
496
				// Fetch query start
497
				$fetch_query_start = $get_query_start->fetchRow();
498
				// Prepare query start for execution by replacing {TP} with the TABLE_PREFIX
499
				$query_start = str_replace('[TP]', TABLE_PREFIX, ($fetch_query_start['value']));
500
			}
501
			// Get query end
502
			$get_query_end = $database->query("SELECT value FROM ".TABLE_PREFIX."search WHERE name = 'query_end' AND extra = '$module_name' LIMIT 1");
503
			if($get_query_end->numRows() > 0) {
504
				// Fetch query end
505
				$fetch_query_end = $get_query_end->fetchRow();
506
				// Set query end
507
				$query_end = ($fetch_query_end['value']);
508
			}
509
			// Get query body
510
			$get_query_body = $database->query("SELECT value FROM ".TABLE_PREFIX."search WHERE name = 'query_body' AND extra = '$module_name' LIMIT 1");
511
			if($get_query_body->numRows() > 0) {
512
				// Fetch query body
513
				$fetch_query_body = $get_query_body->fetchRow();
514
				// Prepare query body for execution by replacing {STRING} with the correct one
515
				$query_body = str_replace(array('[TP]','[O]','[W]'), array(TABLE_PREFIX,'LIKE','%'), ($fetch_query_body['value']));
516
				// Loop through query body for each string, then combine with start and end
517
				$prepared_query = $query_start." ( ( ( ";
518
				$count = 0;
519
				foreach($search_normal_array AS $string) {
520
					if($count != 0) {
521
						$prepared_query .= " ) ".$logical_operator." ( ";
522
					}
523
					$prepared_query .= str_replace('[STRING]', $string, $query_body);
524
					$count = $count+1;
525
				}
526
				$count=0;
527
				$prepared_query .= ' ) ) OR ( ( ';
528
				foreach($search_entities_array AS $string) {
529
					if($count != 0) {
530
						$prepared_query .= " ) ".$logical_operator." ( ";
531
					}
532
					$prepared_query .= str_replace('[STRING]', $string, $query_body);
533
					$count = $count+1;
534
				}
535
				$prepared_query .= " ) ) ) ".$query_end;
536
	
537
				// Execute query
538
				$page_query = $database->query($prepared_query." ".$search_path_SQL);
539

    
540
				// Loop through queried items
541
				if($page_query->numRows() > 0) {
542
					while($page = $page_query->fetchRow()) {
543
						// Only show this page if it hasn't already been listed
544
						if(isset($seen_pages[$module_name][$page['page_id']]) || isset($pages_listed[$page['page_id']])) {
545
							continue;
546
						}
547
						
548
						// don't list pages with visibility == none|deleted and check if user is allowed to see the page
549
						$p_table = TABLE_PREFIX."pages";
550
						$viewquery = $database->query("
551
							SELECT visibility, viewing_groups, viewing_users
552
							FROM $p_table
553
							WHERE page_id='{$page['page_id']}'
554
						");
555
						$visibility = 'none'; $viewing_groups="" ; $viewing_users="";
556
						if($viewquery->numRows() > 0) {
557
							if($res = $viewquery->fetchRow()) {
558
								$visibility = $res['visibility'];
559
								$viewing_groups = $res['viewing_groups'];
560
								$viewing_users = $res['viewing_users'];
561
								if($visibility == 'deleted' || $visibility == 'none') {
562
									continue;
563
								}
564
								if($visibility == 'private') {
565
									if($admin->page_is_visible(array(
566
										'page_id'=>$page[$fields['page_id']],
567
										'visibility' =>$visibility,
568
										'viewing_groups'=>$viewing_groups,
569
										'viewing_users'=>$viewing_users
570
									)) == false) {
571
										continue;
572
									}
573
								}
574
								if($admin->page_is_active(array('page_id'=>$page[$fields['page_id']]))==false) {
575
									continue;
576
								}
577
							}
578
						}
579
	
580
						// Get page link
581
						$link = page_link($page['link']);
582
						// Add search string for highlighting
583
						if ($match!='exact') {
584
							$sstring = implode(" ", $search_normal_array);
585
							$link = $link."?searchresult=1&amp;sstring=".urlencode($sstring);
586
						} else {
587
							$sstring = strtr($search_normal_array[0], " ", "_");
588
							$link = $link."?searchresult=2&amp;sstring=".urlencode($sstring);
589
						}
590
						// Set vars to be replaced by values
591
						if(!isset($page['description'])) { $page['description'] = ""; }
592
						if(!isset($page['modified_when'])) { $page['modified_when'] = 0; }
593
						if(!isset($page['modified_by'])) { $page['modified_by'] = 0; }
594
						$vars = array('[LINK]', '[TITLE]', '[DESCRIPTION]', '[USERNAME]','[DISPLAY_NAME]','[DATE]','[TIME]','[TEXT_LAST_UPDATED_BY]','[TEXT_ON]','[EXCERPT]');
595
						if($page['modified_when'] > 0) {
596
							$date = gmdate(DATE_FORMAT, $page['modified_when']+TIMEZONE);
597
							$time = gmdate(TIME_FORMAT, $page['modified_when']+TIMEZONE);
598
						} else {
599
							$date = $TEXT['UNKNOWN'].' '.$TEXT['DATE'];
600
							$time = $TEXT['UNKNOWN'].' '.$TEXT['TIME'];
601
						}
602
						$excerpt="";
603
						if($cfg_show_description == 0) {
604
							$page['description'] = "";
605
						}
606
						if(isset($page['menu_title'])) $rep_title = $page['menu_title'];
607
						else $rep_title = $page['page_title'];
608
						$values = array($link, $rep_title, $page['description'], $users[$page['modified_by']]['username'], $users[$page['modified_by']]['display_name'], $date, $time, $TEXT['LAST_UPDATED_BY'], strtolower($TEXT['ON']), $excerpt);
609
						// Show loop code with vars replaced by values
610
						echo str_replace($vars, $values, ($fetch_results_loop['value']));
611
						// Say that this page has been listed
612
						$seen_pages[$module_name][$page['page_id']] = true;
613
						$pages_listed[$page['page_id']] = true;
614
					}
615
				}
616
			}
617
		}
618
	}
619

    
620
	// Say no items found if we should
621
	if(count($pages_listed) == 0) {
622
		echo $search_no_results;
623
	}
624
} else {
625
	echo $search_no_results;
626
}
627

    
628
// Show search results_footer
629
echo $search_results_footer;
630
// Show search footer
631
echo $search_footer;
632

    
633
?>
(2-2/4)