blob: d2dfa7da07d221733ed260e4792f249f4523397a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
<?php
/*
* Created on 7/05/2006
*/
class Search extends TPage
{
public function onLoad($param)
{
if(!$this->IsPostBack && strlen($text = $this->search->getText()) > 0)
{
$quickstart = $this->getApplication()->getModule("quickstart_search");
$hits_1 = $quickstart->find($text);
$this->quickstart_results->setDataSource($hits_1);
$this->quickstart_results->dataBind();
$this->emptyResult->setVisible(!count($hits_1));
}
}
public function highlightSearch($text)
{
$words = str_word_count($text, 1);
$keys = str_word_count(strtolower($this->search->getText()),1);
$where = 0;
$t = count($words);
for($i = 0; $i<$t; $i++)
{
if($this->containsKeys(strtolower($words[$i]), $keys))
{
$words[$i] = '<span class="searchterm">'.$words[$i].'</span>';
$where = $i;
break;
}
}
$min = $where - 15 < 0 ? 0 : $where - 15;
$max = $where + 15 > $t ? $t : $where + 15;
$subtext = array_splice($words, $min, $max-$min);
$prefix = $min == 0 ? '' : '...';
$suffix = $max == $t ? '' : '...';
return $prefix.implode(' ', $subtext).$suffix;
}
protected function containsKeys($word, $keys)
{
foreach($keys as $key)
{
if(is_int(strpos($word, $key)))
return true;
}
return false;
}
}
?>
|