| Versionen | |
|---|---|
| drupal7 | public DatabaseCondition::condition($field, $value = NULL, $operator = '=') |
includes/
<?php
public function condition($field, $value = NULL, $operator = '=') {
$this->conditions[] = array(
'field' => $field,
'value' => $value,
'operator' => $operator,
);
$this->changed = TRUE;
return $this;
}
?>
Kommentare
Kommentar hinzufügen