class GroupFilterGambit extends AbstractRegexGambit implements FilterInterface

Methods

getGambitPattern()

<p>The regex pattern to match the bit against.</p>

bool
apply(SearchState $search, string $bit)

<p>Apply conditions to the searcher for a bit of the search string.</p>

array
match(string $bit)

<p>Match the bit against this gambit.</p>

mixed
conditions(SearchState $search, array $matches, bool $negate)

<p>Apply conditions to the search, given that the gambit was matched.</p>

string
getFilterKey()

<p>This filter will only be run when a query contains a filter param with this key.</p>

filter(FilterState $filterState, string $filterValue, bool $negate)

<p>Filters a query.</p>

constrain(Builder $query, User $actor, string $rawQuery, bool $negate)

No description

Details

getGambitPattern()

<p>The regex pattern to match the bit against.</p>

bool apply(SearchState $search, string $bit)

<p>Apply conditions to the searcher for a bit of the search string.</p>

Parameters

SearchState $search
string $bit <p>The piece of the search string.</p>

Return Value

bool <p>Whether or not the gambit was active for this bit.</p>

protected array match(string $bit)

<p>Match the bit against this gambit.</p>

Parameters

string $bit

Return Value

array

protected mixed conditions(SearchState $search, array $matches, bool $negate)

<p>Apply conditions to the search, given that the gambit was matched.</p>

Parameters

SearchState $search <p>The search object.</p>
array $matches <p>An array of matches from the search bit.</p>
bool $negate <p>Whether or not the bit was negated, and thus whether or not the conditions should be negated.</p>

Return Value

mixed

string getFilterKey()

<p>This filter will only be run when a query contains a filter param with this key.</p>

Return Value

string

filter(FilterState $filterState, string $filterValue, bool $negate)

<p>Filters a query.</p>

Parameters

FilterState $filterState
string $filterValue
bool $negate

protected constrain(Builder $query, User $actor, string $rawQuery, bool $negate)

Parameters

Builder $query
User $actor
string $rawQuery
bool $negate