| Versionen | |
|---|---|
| drupal7 | public InsertQuery::__construct($connection, $table, array $options = array()) |
includes/
<?php
public function __construct($connection, $table, array $options = array()) {
if (!isset($options['return'])) {
$options['return'] = Database::RETURN_INSERT_ID;
}
$options += array('delay' => FALSE);
parent::__construct($connection, $options);
$this->table = $table;
}
?>
Kommentare
Kommentar hinzufügen