You are here

function views_export_export_form_apply in Views (for Drupal 7) 6.2

Same name and namespace in other branches
  1. 6.3 views_export/views_export.module \views_export_export_form_apply()
1 string reference to 'views_export_export_form_apply'
views_export_export_form in views_export/views_export.module
Form to choose a group of views to export.

File

views_export/views_export.module, line 164
views_export.module

Code

function views_export_export_form_apply(&$form, &$form_state) {
  $tags = $form_state['values']['tags'];
  if ($tags) {
    drupal_goto('admin/build/views/tools/export', array(
      'tags' => implode(',', $tags),
    ));
  }
  else {
    drupal_goto('admin/build/views/tools/export');
  }
}