/** * Client script for the csv_export plugin * * @author Aleksander Machniak * * @licstart The following is the entire license notice for the * JavaScript code in this file. * * Copyright (C) 2011-2016, Kolab Systems AG * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . * * @licend The above is the entire license notice * for the JavaScript code in this file. */ if (window.rcmail) { rcmail.addEventListener('beforeexport', function(e) { return csv_export_dialog(e, 'export'); }) .addEventListener('beforeexport-selected', function(e) { return csv_export_dialog(e, 'export-selected'); }); } // Display dialog with format selection function csv_export_dialog(event, action) { // goto the default export if vcard format was selected if (rcmail.env.csv_export_bypass) { return; } var close_fn = function() { $(this).remove(); }; rcmail.show_popup_dialog( csv_export_dialog_body(), rcmail.get_label('csv_export.title'), [{ text: rcmail.get_label('export'), 'class': 'mainaction', click: function() { $(this).remove(); csv_export_dialog_action($('input:checked', this).val(), action); } }, { text: rcmail.get_label('cancel'), click: close_fn }], {close: close_fn} ); return false; } // Build dialog body function csv_export_dialog_body() { return [ $('
').text(rcmail.get_label('csv_export.text')), $('').attr({type: 'radio', name: 'format', value: 'vcf', id: 'csv_format_vcf'}) .prop('checked', true), $('