Skip to content

Instantly share code, notes, and snippets.

@cbiggins
Created March 18, 2013 04:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cbiggins/5185178 to your computer and use it in GitHub Desktop.
Save cbiggins/5185178 to your computer and use it in GitHub Desktop.
shuffle and kill
<?php
/**
* @file
* Small snippets for making the Twitter statuses easier to work with.
*/
function fma_twitter_views_pre_render(&$view) {
if ($view->name === 'fma_tweets') {
shuffle($view->result);
$view->result = array($view->result[0]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment