* ImportExport: switch notifications off by default on import

This commit is contained in:
Ralf Becker 2015-11-13 16:05:11 +00:00
parent 79ab47771b
commit 69df935fb1
2 changed files with 7 additions and 1 deletions

View File

@ -131,6 +131,11 @@ class calendar_import_ical implements importexport_iface_import_plugin {
echo lang("No preview for iCal"); echo lang("No preview for iCal");
return; return;
} }
// switch off notifications by default
if (!isset($_definition->plugin_options['no_notification']))
{
$_definition->plugin_options['no_notification'] = true;
}
if (!$calendar_ical->importVCal($_stream, -1,null,false,0,'',null,null,null,$_definition->plugin_options['no_notification'])) if (!$calendar_ical->importVCal($_stream, -1,null,false,0,'',null,null,null,$_definition->plugin_options['no_notification']))
{ {
$this->errors[] = lang('Error: importing the iCal'); $this->errors[] = lang('Error: importing the iCal');

View File

@ -189,6 +189,7 @@
$data['appname'] = $preserve['appname'] = $appname ? $appname : ($definition_obj ? $definition_obj->application : ''); $data['appname'] = $preserve['appname'] = $appname ? $appname : ($definition_obj ? $definition_obj->application : '');
$data['definition'] = $definition; $data['definition'] = $definition;
$data['delimiter'] = $definition_obj->plugin_options['delimiter']; $data['delimiter'] = $definition_obj->plugin_options['delimiter'];
$data['no_notifications'] = true; // switch notifications off by default
$sel_options = self::get_select_options($data); $sel_options = self::get_select_options($data);
@ -382,7 +383,7 @@
continue; continue;
} }
//error_log("Raw[Defn: {$options['csv_fields'][$index]} File: $header] Lang[Defn: $lang_defn File: $lang_file] MSG_ID[Defn: $defn_message_id File: $file_message_id]"); //error_log("Raw[Defn: {$options['csv_fields'][$index]} File: $header] Lang[Defn: $lang_defn File: $lang_file] MSG_ID[Defn: $defn_message_id File: $file_message_id]");
// Problem // Problem
$message[] = lang("Column mismatch: %1 should be %2, not %3", $message[] = lang("Column mismatch: %1 should be %2, not %3",
$index,$options['csv_fields'][$index], $header); $index,$options['csv_fields'][$index], $header);