-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathclass.widget.hitbox.php
31 lines (24 loc) · 1.02 KB
/
class.widget.hitbox.php
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
<?php
class WidgetHitBox extends Widgets implements SplObserver {
private $Name = 'HitBox';
private $Queries = array(); //keep track of query offset
public function __construct($SphinxClient, $Settings) {
parent::__construct($SphinxClient, $Settings);
}
public function Update(SplSubject $Subject) {
$Status = $Subject->getStatus(); //retrieve status array
$Results = $Status['Results'];
$Sender = $Status['Sender'];
if ($Sender->ControllerName == 'searchcontroller' && isset($Results['MainSearch']['words']) && !(empty($_GET) || isset($_GET['tar']))) {
if ($this->Settings['Admin']->MainHitBoxEnable > 0) { //is the hitbox enabled?
if (sizeof($Results['MainSearch']['words']) > 0) {
$Module = new HitBoxModule($Results['MainSearch']['words']);
$Sender->AddModule($Module);
}
}
}
}
public function AddQuery($Sender, $Options = FALSE) {
//do nothing
}
}