Created
September 19, 2013 07:54
-
-
Save fieke/6620304 to your computer and use it in GitHub Desktop.
Rotating block logo's
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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