Skip to content

Instantly share code, notes, and snippets.

@claudinec
Created July 18, 2011 02:14
Show Gist options
  • Save claudinec/1088404 to your computer and use it in GitHub Desktop.
Save claudinec/1088404 to your computer and use it in GitHub Desktop.
Drupal number of results in view
// http://stackoverflow.com/questions/2973975/drupal-return-number-of-results-in-a-view
// what you can do is to activate php for the views header/footer and add the following snippet to it:
<?php
$view = views_get_current_view();
print $view->total_rows;
?>
@claudinec
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment