Skip to content

Instantly share code, notes, and snippets.

@scottrigby
Created March 5, 2014 22:52
Show Gist options
  • Save scottrigby/9378414 to your computer and use it in GitHub Desktop.
Save scottrigby/9378414 to your computer and use it in GitHub Desktop.
render array: Iframe inside div
$iframe_element = array(
'#type' => 'html_tag',
'#tag' => 'iframe',
'#attributes' => array(
'name' => check_plain('TEST'),
'src' => url('http://google.com', array('html' => TRUE)),
'height' => 200,
'width' => 200,
'id' => drupal_html_id('TEST'),
'class' => drupal_html_class('TEST'),
),
'#value' => '',
'#prefix' => '<div class="TEST">',
'#suffix' => '</div>',
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment