Skip to content

Instantly share code, notes, and snippets.

@dduleone
Created March 4, 2014 18:57
Show Gist options
  • Save dduleone/9353162 to your computer and use it in GitHub Desktop.
Save dduleone/9353162 to your computer and use it in GitHub Desktop.
RebelMouse Render Array Tests
$render = array(
'#tag' => 'iframe',
'#attributes' => array (
'src' => url($url),
'width' => '100%',
'scrolling' => 'auto',
'height' => '500',
'frameborder' => '0',
),
'#prefix' => '<div class="nbcuoxy-rebelmouse">',
'#suffix' => '</div>',
);
$render = array(
'container' => array(
'#tag' => 'div',
'#attributes' => array(
'class' => 'nbcuoxy-rebelmouse'
),
'embed' => array (
'#tag' => 'iframe',
'#value' => '',
'#attributes' => array (
'src' => url($url),
'width' => '100%',
'scrolling' => 'auto',
'height' => '500',
'frameborder' => '0'
),
),
),
);
$render = array(
'#markup' => '<div class="nbcuoxy-rebelmouse"><iframe src="'.url($url).'" width="100%" scrolling="auto" height="100%" frameborder="0" ></iframe></div>',
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment