Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. function hook_views_post_execute(&$view) {
  2. // If there are more than 100 results, show a message that encourages the user
  3. // to change the filter settings.
  4. // (This action could be performed later in the execution process, but not
  5. // earlier.)
  6. if ($view->total_rows > 100) {
  7. drupal_set_message(t('You have more than 100 hits. Use the filter settings to narrow down your list.'));
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement