views-view-unformatted--guestbook--page-1.tpl.php
Eingetragen von stBorchert (6003) am 03.06.2009 - 10:29 Uhr in
<?php
/**
* @file views-view-unformatted--guestbook--page-1.tpl.php
*
* Display 3 items, the form and then the other items.
* @ingroup views_templates
*/
?>
<?php
module_load_include('inc', 'node', 'node.pages');
?>
<?php
$index = 0;
// Print the first 3 rows.
for ($i = 0; $i < 3; $i++) {
if (count($rows)) {
// Print and remove the first element from $rows.
?>
<div class="<?php print $classes[$index]; ?>">
<?php print array_shift($rows); ?>
</div>
<?php
$index++;
}
}
?>
<?php
// Output node form.
print node_add('guestbook_item');
?>
<?php
// Set page title.
drupal_set_title('Guestbook');
?>
<?php foreach ($rows as $id => $row): ?>
<div class="<?php print $classes[$id]; ?>">
<?php print $row; ?>
</div>
<?php $index++ ?>
<?php endforeach; ?>
- Anmelden oder Registrieren um Kommentare zu schreiben
Neue Kommentare
vor 2 Tagen 20 Stunden
vor 2 Tagen 22 Stunden
vor 2 Tagen 23 Stunden
vor 2 Tagen 23 Stunden
vor 3 Tagen 20 Stunden
vor 3 Tagen 22 Stunden
vor 4 Tagen 18 Stunden
vor 5 Tagen 12 Stunden
vor 5 Tagen 13 Stunden
vor 5 Tagen 16 Stunden