clears all defined settings
$coll->clear();
check if options for named field exist in collection and return related hash. Returns false if named field not found in collection.
$index = $coll->index("some_field");
adds new filtering rule to collection
$coll->add("some_field","abc"); // some_field LIKE "%abc%" $coll->add("other_field","5","<"); //some_field < 5
array of all already defined sorting rules. Each element has two properties
$name = $coll->rules[0]["name"] $coll->rules[0]["value"]="cde";