You are here

function lingotek_edit_nodes in Lingotek Translation 7.5

Same name and namespace in other branches
  1. 7.7 lingotek.bulk_grid.inc \lingotek_edit_nodes()
  2. 7.4 lingotek.bulk_grid.inc \lingotek_edit_nodes()
  3. 7.6 lingotek.bulk_grid.inc \lingotek_edit_nodes()

Callback function to edit settings for multiple nodes at a time

Node IDs are passed through the $_SESSION variable at $_SESSION['lingotek_edit_nodes']

Returns a fully rendered html form

1 string reference to 'lingotek_edit_nodes'
lingotek_menu in ./lingotek.module
Implements hook_menu().

File

./lingotek.bulk_grid.inc, line 1561
Bulk Grid form

Code

function lingotek_edit_nodes($entity_type, $nids) {
  $nids = explode(',', $nids);
  ctools_include('node.pages', 'node', '');
  ctools_include('modal');
  ctools_include('ajax');
  $form_state = array(
    'ajax' => TRUE,
    'nids' => $nids,
    'entity_type' => $entity_type,
  );
  $output = ctools_modal_form_wrapper('lingotek_get_node_settings_form', $form_state);
  if (!empty($form_state['executed'])) {

    // Create ajax command array, dismiss the modal window.
    $commands = array();
    $commands[] = ctools_modal_command_dismiss();
    $commands[] = ctools_ajax_command_reload();
    print ajax_render($commands);
    drupal_exit();
  }
  print ajax_render($output);
}