ctools_modal_command_display

6 modal.inc ctools_modal_command_display($title, $html)
7 modal.inc ctools_modal_command_display($title, $html)

Place HTML within the modal.

Parameters

$title: The title of the modal.

$html: The html to place within the modal.

12 functions call ctools_modal_command_display()

File

contributions/ctools/includes/modal.inc, line 120
Implement a modal form using AJAX.

Code

<?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,
  );
}
?>