Skip to content

Instantly share code, notes, and snippets.

@fieke
Created September 19, 2013 07:54
Show Gist options
  • Save fieke/6620304 to your computer and use it in GitHub Desktop.
Save fieke/6620304 to your computer and use it in GitHub Desktop.
Rotating block logo's
/**
* Implent pre process node
*/
function custom_preprocess_node(&$variables) {
switch ($variables['type']) {
case 'block':
if (isset($variables['field_add_rotating_partners']) && $variables['field_add_rotating_partners']['und']['0']['value'] == 1) {
$partners = views_embed_view('logos', 'logos_homepage');
$variables['content']['body']['0']['#markup'] .= $partners;
}
break;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment