function globallink_fieldable_panels_preview in GlobalLink Connect for Drupal 7.7
Helper function
1 string reference to 'globallink_fieldable_panels_preview'
- globallink_fieldable_panels_menu in globallink_fieldable_panels/
globallink_fieldable_panels.module - Implements hook_menu().
File
- globallink_fieldable_panels/
globallink_fieldable_panels_send.inc, line 397
Code
function globallink_fieldable_panels_preview($ajax) {
if ($ajax) {
ctools_include('ajax');
ctools_include('modal');
$form_state = array(
'ajax' => TRUE,
'title' => t('Preview'),
);
// Use ctools to generate ajax instructions for the browser to create a form in a modal popup.
$output = ctools_modal_form_wrapper('globallink_fieldable_panels_preview_content', $form_state);
// If the form has been submitted, there may be additional instructions such as dismissing the modal popup.
if (!empty($form_state['ajax_commands'])) {
$output = $form_state['ajax_commands'];
}
// Return the ajax instructions to the browser via ajax_render().
print ajax_render($output);
drupal_exit();
}
else {
return drupal_get_form('globallink_fieldable_panels_preview_content');
}
}