function globallink_taxonomy_preview in GlobalLink Connect for Drupal 7.7
Helper function
1 string reference to 'globallink_taxonomy_preview'
- globallink_taxonomy_menu in globallink_taxonomy/
globallink_taxonomy.module - Implements hook_menu().
File
- globallink_taxonomy/
globallink_taxonomy_send.inc, line 433
Code
function globallink_taxonomy_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_taxonomy_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_taxonomy_preview_content');
}
}