-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathFilterTip.php
18 lines (18 loc) · 2.64 KB
/
FilterTip.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<button class="tablesorter_Reset" type="button"><?php If (isset($TableSorterLang) == True){echo $TableSorterLang['ResetAllSearchFilter'];}?></button>
<div class="tablesorter_Reset FilterTipMain"><?php If (isset($TableSorterLang) == True){echo $TableSorterLang['FilterTips'];}?>
<table class="FilterTip"><thead><tr><th style="width:55px">Priority</th><th style="width:100px"><?php If (isset($PlayersLang) == True){echo $PlayersLang['Type'];}?></th><th style="width:485px">Description</th></tr></thead>
<tbody>
<tr><td class="STHSCenter">1</td><td><code>|</code> or <code> OR </code></td><td>Logical "or" (Vertical bar). Filter the column for content that matches text from either side of the bar</td></tr>
<tr><td class="STHSCenter">2</td><td><code> && </code> or <code> AND </code></td><td>Logical "and". Filter the column for content that matches text from either side of the operator.</td></tr>
<tr><td class="STHSCenter">3</td><td><code>/\d/</code></td><td>Add any regex to the query to use in the query ("mig" flags can be included <code>/\w/mig</code>)</td></tr>
<tr><td class="STHSCenter">4</td><td><code>< <= >= ></code></td><td>Find alphabetical or numerical values less than or greater than or equal to the filtered query</td></tr>
<tr><td class="STHSCenter">5</td><td><code>!</code> or <code>!=</code></td><td>Not operator, or not exactly match. Filter the column with content that <strong>do not</strong> match the query. Include an equal (<code>=</code>), single (<code>'</code>) or double quote (<code>"</code>) to exactly <em>not</em> match a filter.</td></tr>
<tr><td class="STHSCenter">6</td><td><code>"</code> or <code>=</code></td><td>To exactly match the search query, add a quote, apostrophe or equal sign to the beginning and/or end of the query</td></tr>
<tr><td class="STHSCenter">7</td><td><code> - </code> or <code> to </code></td><td>Find a range of values. Make sure there is a space before and after the dash (or the word "to")</td></tr>
<tr><td class="STHSCenter">8</td><td><code>?</code></td><td>Wildcard for a single, non-space character.</td></tr>
<tr><td class="STHSCenter">8</td><td><code>*</code></td><td>Wildcard for zero or more non-space characters.</td></tr>
<tr><td class="STHSCenter">9</td><td><code>~</code></td><td>Perform a fuzzy search (matches sequential characters) by adding a tilde to the beginning of the query</td></tr>
<tr><td class="STHSCenter">10</td><td>text</td><td>Any text entered in the filter will <strong>match</strong> text found within the column</td></tr>
</tbody>
</table>
</div>