| Versionen | |
|---|---|
| drupal7 | db_condition($conjunction) |
Returns a new DatabaseCondition, set to the specified conjunction.
The conjunction (AND, OR, XOR, etc.) to use on conditions.
includes/
<?php
function db_condition($conjunction) {
return new DatabaseCondition($conjunction);
}
?>
Kommentare
Kommentar hinzufügen