| 6 modal.inc | ctools_modal_command_display($title, $html) |
| 7 modal.inc | ctools_modal_command_display($title, $html) |
Place HTML within the modal.
$title: The title of the modal.
$html: The html to place within the modal.
<?php
function ctools_modal_command_display($title, $html) {
if (is_array($html)) {
$html = drupal_render($html);
}
return array(
'command' => 'modal_display',
'title' => $title,
'output' => $html,
);
}
?>