- Patch #700518 by agentrickard: document conjunctions for db_condition().

merge-requests/26/head
Dries Buytaert 2010-01-31 18:42:41 +00:00
parent 6c9b682bb6
commit 0597e322ce
1 changed files with 4 additions and 2 deletions

View File

@ -1386,8 +1386,10 @@ function db_xor() {
/** /**
* Returns a new DatabaseCondition, set to the specified conjunction. * Returns a new DatabaseCondition, set to the specified conjunction.
* *
* @param * @param $conjunction
* The conjunction (AND, OR, XOR, etc.) to use on conditions. * The conjunction to use for query conditions. The following conjunctions are
* supported: AND, OR, XOR, IN, NOT IN, BETWEEN, IS NULL, IS NOT NULL,
* LIKE.
* @return DatabaseCondition * @return DatabaseCondition
*/ */
function db_condition($conjunction) { function db_condition($conjunction) {