The name that identifies the field's value in the $_REQUEST array. It should be identical to names used in forms and so on. The value does not have to be unique but collisions might occur if it is not.
string
$tableField
The name of the table field that should be associated with the search field.
string
$processCallback
An optional callback that will be used by the search field to process parameters before they are used in the sql query. The callback should take one value which is the value of the parameter from $_REQUEST and return one value, which is the desired value to use.
Gets the where condition of the search field. This should be a sql statement that can be placed after "WHERE" in the sql query. A couple of examples: "id > 5", "(solved = 1) AND (tested = 0)".