| Versionen | |
|---|---|
| drupal7 | public SelectQuery::__clone() |
includes/
<?php
public function __clone() {
// On cloning, also clone the conditional objects. However, we do not
// want to clone the database connection object as that would duplicate the
// connection itself.
$this->where = clone($this->where);
$this->having = clone($this->having);
}
?>
Kommentare
Kommentar hinzufügen