Skip to content

Instantly share code, notes, and snippets.

@frankyonnetti
Last active February 17, 2021 03:47
Show Gist options
  • Save frankyonnetti/5944736 to your computer and use it in GitHub Desktop.
Save frankyonnetti/5944736 to your computer and use it in GitHub Desktop.
Drupal 7 - views count rows #drupal #d7
<?php
for ($i = $view->total_rows + 1; $i <= 4; $i++) {
print '<div class="events ' . $i . '">';
print ' <h3>No Events</h3>';
print '</div>';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment