public function canExpose() { return TRUE;
} /**
* Determine if a filter can be converted into a group.
*
* Only exposed filters with operators available can be converted into groups.
*/
protected function canBuildGroup() { return $this->
isExposed() && (count($this->
operatorOptions()) > 0
);
} /**
* Returns TRUE if the exposed filter works like a grouped filter.
*/
public function isAGroup() { return $this->
isExposed() && !
empty($this->options
['is_grouped'
]);
} /**
* Provide the basic form which calls through to subforms.
*
* If overridden, it is best to call through to the parent,
* or to at least make sure all of the functions in this form
* are called.
*/