$exclude_href = "";
$reset_href = "";
}
+
+ function is_normal(){
+ return empty($this->reset_href);
+ }
+
+ function is_refined(){
+ return ( (!empty($this->reset_href)) && ($this->count > 0) );
+ }
+
+ function is_excluded(){
+ return ( (!empty($this->reset_href)) && ($this->count == 0) );
+ }
+
}
class ExaleadGroup{
$this->gcount = "";
}
+ function is_normal(){
+ return empty($this->reset_href);
+ }
+
+ function is_refined(){
+ return ( (!empty($this->reset_href)) && ($this->count > 0) );
+ }
+
+ function is_excluded(){
+ return ( (!empty($this->reset_href)) && ($this->count == 0) );
+ }
+
}
class ExaleadHit{