| Versionen | |
|---|---|
| drupal7 | public SystemQueue::createItem($data) |
modules/
<?php
public function createItem($data) {
$record = new stdClass();
$record->name = $this->name;
$record->data = $data;
$record->consumer_id = 0;
// We cannot rely on REQUEST_TIME because many items might be created by a
// single request which takes longer than 1 second.
$record->created = time();
return drupal_write_record('queue', $record) !== FALSE;
}
?>
Kommentare
Kommentar hinzufügen