| Versionen | |
|---|---|
| drupal7 | public DatabaseStatementPrefetch::next() |
Returns the rendered local tasks. The default implementation renders them as tabs. Overridden to split the secondary tasks.
includes/
<?php
public function next() {
if (!empty($this->data)) {
$this->currentRow = reset($this->data);
$this->currentKey = key($this->data);
unset($this->data[$this->currentKey]);
}
else {
$this->currentRow = NULL;
}
}
?>
Kommentare
Kommentar hinzufügen