C:\$Recycle.Bin\S-1-5-21-3967099092-2644009230-141905953-500\$RAQKNYH\admin\importgroup.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
<?php
/*
* LimeSurvey
* Copyright (C) 2007 The LimeSurvey Project Team / Carsten Schmitz
* All rights reserved.
* License: GNU/GPL License v2 or later, see LICENSE.php
* LimeSurvey is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.

* $Id: importgroup.php 6610 2009-04-10 14:16:25Z c_schmitz $
*/

include_once("login_check.php");

// A FILE TO IMPORT A DUMPED SURVEY FILE, AND CREATE A NEW SURVEY

$importgroup "<br /><table width='100%' align='center'><tr><td>\n";
$importgroup .= "<table class='alertbox' >\n";
$importgroup .= "\t<tr ><td colspan='2' height='4'><strong>".$clang->gT("Import Group")."</strong></td></tr>\n";
$importgroup .= "\t<tr><td align='center'>\n";

$the_full_file_path $tempdir "/" $_FILES['the_file']['name'];

if (!@
move_uploaded_file($_FILES['the_file']['tmp_name'], $the_full_file_path))
{
    
$importgroup .= "<strong><font color='red'>".$clang->gT("Error")."</font></strong><br />\n";
    
$importgroup .= sprintf ($clang->gT("An error occurred uploading your file. This may be caused by incorrect permissions in your %s folder."),$tempdir)."<br /><br />\n";
    
$importgroup .= "<input type='submit' value='".$clang->gT("Main Admin Screen")."' onclick=\"window.open('$scriptname', '_top')\">\n";
    
$importgroup .= "</td></tr></table>\n";
    return;
}

// validate that we have a SID 
if (!returnglobal('sid'))
{
    
$importquestion .= $clang->gT("No SID (Survey) has been provided. Cannot import group.")."<br /><br />\n"
    
."<input type='submit' value='"
    
.$clang->gT("Main Admin Screen")."' onclick=\"window.open('$scriptname', '_top')\">\n"
    
."</td></tr></table>\n";
    
unlink($the_full_file_path);
    return;
}
else
{
    
$newsid returnglobal('sid');
}


// IF WE GOT THIS FAR, THEN THE FILE HAS BEEN UPLOADED SUCCESFULLY

$importgroup .= "<strong><font class='successtitle'>".$clang->gT("Success")."</font></strong><br />\n";
$importgroup .= $clang->gT("File upload succeeded.")."<br /><br />\n";
$importgroup .= $clang->gT("Reading file...")."<br />\n";
$handle fopen($the_full_file_path"r");
while (!
feof($handle))
{
    
$buffer fgets($handle); 
    
$bigarray[] = $buffer;
}
fclose($handle);

if (
substr($bigarray[0], 023) != "# LimeSurvey Group Dump" && substr($bigarray[0], 024) != "# PHPSurveyor Group Dump")
{
    
$importgroup .= "<strong><font color='red'>".$clang->gT("Error")."</font></strong><br />\n";
    
$importgroup .= $clang->gT("This file is not a LimeSurvey group file. Import failed.")."<br /><br />\n";
    
$importgroup .= "<input type='submit' value='".$clang->gT("Main Admin Screen")."' onclick=\"window.open('$scriptname', '_top')\">\n";
    
$importgroup .= "</td></tr></table>\n";
    
unlink($the_full_file_path);
    return;
}

for (
$i=0$i<9$i++)
{
    unset(
$bigarray[$i]);
}
$bigarray array_values($bigarray);

//GROUPS
if (array_search("# QUESTIONS TABLE\n"$bigarray))
{
    
$stoppoint array_search("# QUESTIONS TABLE\n"$bigarray);
}
elseif (
array_search("# QUESTIONS TABLE\r\n"$bigarray))
{
    
$stoppoint array_search("# QUESTIONS TABLE\r\n"$bigarray);
}
else
{
    
$stoppoint count($bigarray)-1;
}
for (
$i=0$i<=$stoppoint+1$i++)
{
    if (
$i<$stoppoint-2) {$grouparray[] = $bigarray[$i];}
    unset(
$bigarray[$i]);
}
$bigarray array_values($bigarray);

//QUESTIONS
if (array_search("# ANSWERS TABLE\n"$bigarray))
{
    
$stoppoint array_search("# ANSWERS TABLE\n"$bigarray);
}
elseif (
array_search("# ANSWERS TABLE\r\n"$bigarray))
{
    
$stoppoint array_search("# ANSWERS TABLE\r\n"$bigarray);
}
else
{
    
$stoppoint count($bigarray)-1;
}
for (
$i=0$i<=$stoppoint+1$i++)
{
    if (
$i<$stoppoint-2) {$questionarray[] = $bigarray[$i];}
    unset(
$bigarray[$i]);
}
$bigarray array_values($bigarray);

//ANSWERS
if (array_search("# CONDITIONS TABLE\n"$bigarray))
{
    
$stoppoint array_search("# CONDITIONS TABLE\n"$bigarray);
}
elseif (
array_search("# CONDITIONS TABLE\r\n"$bigarray))
{
    
$stoppoint array_search("# CONDITIONS TABLE\r\n"$bigarray);
}
else
{
    
$stoppoint count($bigarray)-1;
}
for (
$i=0$i<=$stoppoint+1$i++)
{
    if (
$i<$stoppoint-2) {$answerarray[] = $bigarray[$i];}
    unset(
$bigarray[$i]);
}
$bigarray array_values($bigarray);

//CONDITIONS
if (array_search("# LABELSETS TABLE\n"$bigarray))
{
    
$stoppoint array_search("# LABELSETS TABLE\n"$bigarray);
}
elseif (
array_search("# LABELSETS TABLE\r\n"$bigarray))
{
    
$stoppoint array_search("# LABELSETS TABLE\r\n"$bigarray);
}
else
{
    
$stoppoint count($bigarray);
}
for (
$i=0$i<=$stoppoint+1$i++)
{
    if (
$i<$stoppoint-2) {$conditionsarray[] = $bigarray[$i];}
    unset(
$bigarray[$i]);
}
$bigarray array_values($bigarray);

//LABELSETS
if (array_search("# LABELS TABLE\n"$bigarray))
{
    
$stoppoint array_search("# LABELS TABLE\n"$bigarray);
}
elseif (
array_search("# LABELS TABLE\r\n"$bigarray))
{
    
$stoppoint array_search("# LABELS TABLE\r\n"$bigarray);
}
else
{
    
$stoppoint count($bigarray)-1;
}
for (
$i=0$i<=$stoppoint+1$i++)
{
    if (
$i<$stoppoint-2) {$labelsetsarray[] = $bigarray[$i];}
    unset(
$bigarray[$i]);
}
$bigarray array_values($bigarray);

//LABELS
if (array_search("# QUESTION_ATTRIBUTES TABLE\n"$bigarray))
{
    
$stoppoint array_search("# QUESTION_ATTRIBUTES TABLE\n"$bigarray);
}
elseif (
array_search("# QUESTION_ATTRIBUTES TABLE\r\n"$bigarray))
{
    
$stoppoint array_search("# QUESTION_ATTRIBUTES TABLE\r\n"$bigarray);
}
else
{
    
$stoppoint count($bigarray)-1;
}
for (
$i=0$i<=$stoppoint+1$i++)
{
    if (
$i<$stoppoint-2) {$labelsarray[] = $bigarray[$i];}
    unset(
$bigarray[$i]);
}
$bigarray array_values($bigarray);

//LAST LOT (now question_attributes)
if (!isset($noconditions) || $noconditions != "Y")
{
    
// stoppoint is the last line number
    // this is an empty line after the QA CSV lines
    
$stoppoint count($bigarray)-1;
    for (
$i=0$i<=$stoppoint+1$i++)
    {
        if (
$i<=$stoppoint-1) {$question_attributesarray[] = $bigarray[$i];}
        unset(
$bigarray[$i]);
    }
}
$bigarray array_values($bigarray);

$countgroups=0;
if (isset(
$questionarray))
    {
    
$questionfieldnames=convertCSVRowToArray($questionarray[0],',','"');
    unset(
$questionarray[0]);
    
$countquestions 0;
    }

if (isset(
$answerarray)) 
    {
    
$answerfieldnames=convertCSVRowToArray($answerarray[0],',','"');
    unset(
$answerarray[0]);
    
$countanswers 0;
    }

$countconditions 0;
$countlabelsets=0;
$countlabels=0;
$countquestion_attributes 0;
$countanswers 0;


// first check that imported group, questions and labels support the 
// current survey's baselang
$langcode GetBaseLanguageFromSurveyID($newsid);
if (isset(
$grouparray))
{
    
$groupfieldnames convertCSVRowToArray($grouparray[0],',','"');
    
$langfieldnum array_search("language"$groupfieldnames);
    
$gidfieldnum array_search("gid"$groupfieldnames);
    
$groupssupportbaselang bDoesImportarraySupportsLanguage($grouparray,Array($gidfieldnum),$langfieldnum,$langcode,true);
    if (!
$groupssupportbaselang)
    {
        
$importgroup .= "<strong><font color='red'>".$clang->gT("Error")."</font></strong><br />\n";
        
$importgroup .= $clang->gT("You can't import a group which doesn't support the current survey's base language.")."<br /><br />\n";
        
$importgroup .= "<input type='submit' value='".$clang->gT("Main Admin Screen")."' onclick=\"window.open('$scriptname', '_top')\">\n";
        
$importgroup .= "</td></tr></table>\n";
        
unlink($the_full_file_path);
        return;
    }
}

if (isset(
$questionarray))
{
    
$langfieldnum array_search("language"$questionfieldnames);
    
$qidfieldnum array_search("qid"$questionfieldnames);
    
$questionssupportbaselang bDoesImportarraySupportsLanguage($questionarray,Array($qidfieldnum), $langfieldnum,$langcode,false);
    if (!
$questionssupportbaselang)
    {
        
$importgroup .= "<strong><font color='red'>".$clang->gT("Error")."</font></strong><br />\n";
        
$importgroup .= $clang->gT("You can't import a question which doesn't support the current survey's base language.")."<br /><br />\n";
        
$importgroup .= "<input type='submit' value='".$clang->gT("Main Admin Screen")."' onclick=\"window.open('$scriptname', '_top')\">\n";
        
$importgroup .= "</td></tr></table>\n";
        
unlink($the_full_file_path);
        return;
    }
}


if (isset(
$labelsetsarray))
{
    
$labelsetfieldname convertCSVRowToArray($labelsetsarray[0],',','"');
    
$langfieldnum array_search("languages"$labelsetfieldname);
    
$lidfilednum =  array_search("lid"$labelsetfieldname);
    
$labelsetssupportbaselang bDoesImportarraySupportsLanguage($labelsetsarray,Array($lidfilednum),$langfieldnum,$langcode,true);
    if (!
$labelsetssupportbaselang)
    {
        
$importquestion .= "<strong><font color='red'>".$clang->gT("Error")."</font></strong><br />\n"
        
.$clang->gT("You can't import label sets which don't support the current survey's base language")."<br /><br />\n"
        
."</td></tr></table>\n";
        
unlink($the_full_file_path);
        return;
    }
}

$newlids = array(); // this array will have the "new lid" for the label sets, the key will be the "old lid"

//DO ANY LABELSETS FIRST, SO WE CAN KNOW WHAT THEIR NEW LID IS FOR THE QUESTIONS
if (isset($labelsetsarray) && $labelsetsarray) {
    
$csarray=buildLabelSetCheckSumArray();   // build checksums over all existing labelsets
    
$count=0;
    foreach (
$labelsetsarray as $lsa) {
        
$fieldorders  =convertCSVRowToArray($labelsetsarray[0],',','"');
        
$fieldcontents=convertCSVRowToArray($lsa,',','"');
        if (
$count==0) {$count++; continue;}
        
        
$countlabelsets++;

        
$labelsetrowdata=array_combine($fieldorders,$fieldcontents);
        
        
// Save old labelid
        
$oldlid=$labelsetrowdata['lid'];
        
// set the new language
        
unset($labelsetrowdata['lid']);
        
$newvalues=array_values($labelsetrowdata);
        
$newvalues=array_map(array(&$connect"qstr"),$newvalues); // quote everything accordingly
        
$lsainsert "INSERT INTO {$dbprefix}labelsets (".implode(',',array_keys($labelsetrowdata)).") VALUES (".implode(',',$newvalues).")"//handle db prefix
        
$lsiresult=$connect->Execute($lsainsert);
        
        
// Get the new insert id for the labels inside this labelset
        
$newlid=$connect->Insert_ID("{$dbprefix}labelsets",'lid');

        if (
$labelsarray) {
            
$count=0;
            foreach (
$labelsarray as $la) {
                
$lfieldorders  =convertCSVRowToArray($labelsarray[0],',','"');
                
$lfieldcontents=convertCSVRowToArray($la,',','"');
                if (
$count==0) {$count++; continue;}
                
                
// Combine into one array with keys and values since its easier to handle
                
$labelrowdata=array_combine($lfieldorders,$lfieldcontents);
                
$labellid=$labelrowdata['lid'];
                if (
$importversion<=132)
                {
                   
$labelrowdata["assessment_value"]=(int)$labelrowdata["code"];
                }
                if (
$labellid == $oldlid) {
                    
$labelrowdata['lid']=$newlid;

                    
// translate internal links
                    
$labelrowdata['title']=translink('label'$oldlid$newlid$labelrowdata['title']);

                    
$newvalues=array_values($labelrowdata);
                    
$newvalues=array_map(array(&$connect"qstr"),$newvalues); // quote everything accordingly
                    
$lainsert "INSERT INTO {$dbprefix}labels (".implode(',',array_keys($labelrowdata)).") VALUES (".implode(',',$newvalues).")"//handle db prefix
                    
$liresult=$connect->Execute($lainsert);
                    
$countlabels++;
                }
            }
        }

        
//CHECK FOR DUPLICATE LABELSETS
        
$thisset="";
        
$query2 "SELECT code, title, sortorder, language
                   FROM 
{$dbprefix}labels
                   WHERE lid="
.$newlid."
                   ORDER BY language, sortorder, code"
;    
        
$result2 db_execute_num($query2) or safe_die("Died querying labelset $lid<br />$query2<br />".$connect->ErrorMsg());
        while(
$row2=$result2->FetchRow())
        {
            
$thisset .= implode('.'$row2);
        } 
// while
        
$newcs=dechex(crc32($thisset)*1);
        unset(
$lsmatch);
        if (isset(
$csarray))
        {
            foreach(
$csarray as $key=>$val)
            {
                if (
$val == $newcs)
                {
                    
$lsmatch=$key;
                }
            }
        }
        if (isset(
$lsmatch))
        {
            
//There is a matching labelset. So, we will delete this one and refer
            //to the matched one.
            
$query "DELETE FROM {$dbprefix}labels WHERE lid=$newlid";
            
$result=$connect->Execute($query) or safe_die("Couldn't delete labels<br />$query<br />".$connect->ErrorMsg());
            
$query "DELETE FROM {$dbprefix}labelsets WHERE lid=$newlid";
            
$result=$connect->Execute($query) or safe_die("Couldn't delete labelset<br />$query<br />".$connect->ErrorMsg());
            
$newlid=$lsmatch;
        }
        else
        {
            
//There isn't a matching labelset, add this checksum to the $csarray array
            
$csarray[$newlid]=$newcs;
        }
        
//END CHECK FOR DUPLICATES
        
$labelreplacements[]=array($oldlid$newlid);
        
$newlids[$oldlid] = $newlid;
    }
}

//these arrays will aloud to insert correctly groups an questions multi languague survey imports correctly, and will eliminate the need to "searh" the imported data
//$newgids = array(); // this array will have the "new gid" for the groups, the kwy will be the "old gid"    <-- not needed when importing groups
$newqids = array(); // this array will have the "new qid" for the questions, the kwy will be the "old qid"

// DO GROUPS, QUESTIONS FOR GROUPS, THEN ANSWERS FOR QUESTIONS IN A __NOT__ NESTED FORMAT!
if (isset($grouparray) && $grouparray
{
    
$surveylanguages=GetAdditionalLanguagesFromSurveyID($surveyid);
    
$surveylanguages[]=GetBaseLanguageFromSurveyID($surveyid);
    
    
// do GROUPS
    
$gafieldorders=convertCSVRowToArray($grouparray[0],',','"');
    unset(
$grouparray[0]);
    
$newgid 0;
    
$group_order 0;   // just to initialize this variable
    
foreach ($grouparray as $ga
    {
        
//GET ORDER OF FIELDS
        
$gacfieldcontents=convertCSVRowToArray($ga,',','"');
        
$grouprowdata=array_combine($gafieldorders,$gacfieldcontents);
        
        
// Skip not supported languages
        
if (!in_array($grouprowdata['language'],$surveylanguages)) 
        {
            
$skippedlanguages[]=$grouprowdata['language'];  // this is for the message in the end.
            
continue;
        }

        
// replace the sid
        
$oldsid=$grouprowdata['sid'];
        
$grouprowdata['sid']=$newsid;

        
// replace the gid  or remove it if needed (it also will calculate the group order if is a new group)
        
$oldgid=$grouprowdata['gid'];
        if (
$newgid == 0
        {
            unset(
$grouprowdata['gid']);
            
            
// find the maximum group order and use this grouporder+1 to assign it to the new group 
            
$qmaxgo "select max(group_order) as maxgo from ".db_table_name('groups')." where sid=$newsid";
            
$gres db_execute_assoc($qmaxgo) or safe_die ($clang->gT("Error")." Failed to find out maximum group order value<br />\n$qmaxqo<br />\n".$connect->ErrorMsg());
            
$grow=$gres->FetchRow();
            
$group_order $grow['maxgo']+1;            
        }
        else 
            
$grouprowdata['gid'] = $newgid;
            
        
$grouprowdata["group_order"]= $group_order
        
        
// Everything set - now insert it
        
$grouprowdata=array_map('convertCsvreturn2return'$grouprowdata);


    
// translate internal links
    
$grouprowdata['group_name']=translink('survey'$oldsid$newsid$grouprowdata['group_name']);
    
$grouprowdata['description']=translink('survey'$oldsid$newsid$grouprowdata['description']);

        
$newvalues=array_values($grouprowdata);
        
$newvalues=array_map(array(&$connect"qstr"),$newvalues); // quote everything accordingly
        
$ginsert "insert INTO {$dbprefix}groups (".implode(',',array_keys($grouprowdata)).") VALUES (".implode(',',$newvalues).")"
        
$gres $connect->Execute($ginsert) or safe_die($clang->gT("Error").": Failed to insert group<br />\n$ginsert<br />\n".$connect->ErrorMsg());
        
        
//GET NEW GID  .... if is not done before and we count a group if a new gid is required
        
if ($newgid == 0
        {
            
$newgid $connect->Insert_ID("{$dbprefix}groups",'gid');
            
$countgroups++;
        }
        break; 
//makes sure only the first group is imported
    
}
    
// GROUPS is DONE
    
    // do QUESTIONS
    
if (isset($questionarray) && $questionarray
    {
        foreach (
$questionarray as $qa
        {
            
$qacfieldcontents=convertCSVRowToArray($qa,',','"');
            
$questionrowdata=array_combine($questionfieldnames,$qacfieldcontents);

            
// Skip not supported languages            
            
if (!in_array($questionrowdata['language'],$surveylanguages)) 
                continue;
            
            
// replace the sid
            
$questionrowdata["sid"] = $newsid;
            
            
// replace the gid (if the gid is not in the oldgid it means there is a problem with the exported record, so skip it)
            
if ($questionrowdata['gid'] == $oldgid)
                
$questionrowdata['gid'] = $newgid;
            else
                continue; 
// a problem with this question record -> don't consider 
                
            // replace the qid or remove it if needed
            
$oldqid $questionrowdata['qid'];  
            if (isset(
$newqids[$oldqid]))
                
$questionrowdata['qid'] = $newqids[$oldqid];
            else
                unset(
$questionrowdata['qid']);
            
            
// replace the lid for the new one (if there is no new lid in the $newlids array it mean that was not imported -> error, skip this record)
            
if (in_array($questionrowdata["type"], array("F","H","W","Z""1"":"";")))      // only fot the questions that uses a label set.
                
if (isset($newlids[$questionrowdata["lid"]]))
                {
                    
$questionrowdata["lid"] = $newlids[$questionrowdata["lid"]];
                    if(isset(
$newlids[$questionrowdata["lid1"]]))
                    {
                        
$questionrowdata["lid1"] = $newlids[$questionrowdata["lid1"]];
                    }
                }
                else
                {
                    continue; 
// a problem with this question record -> don't consider 
                
}
//            $other = $questionrowdata["other"]; //Get 'other' field value
//            $oldlid = $questionrowdata['lid'];

            // Everything set - now insert it
            
$questionrowdata=array_map('convertCsvreturn2return'$questionrowdata);

        
// translate internal links
        
$questionrowdata['title']=translink('survey'$oldsid$newsid$questionrowdata['title']);
        
$questionrowdata['question']=translink('survey'$oldsid$newsid$questionrowdata['question']);
        
$questionrowdata['help']=translink('survey'$oldsid$newsid$questionrowdata['help']);

            
$newvalues=array_values($questionrowdata);
            
$newvalues=array_map(array(&$connect"qstr"),$newvalues); // quote everything accordingly
            
$qinsert "insert INTO {$dbprefix}questions (".implode(',',array_keys($questionrowdata)).") VALUES (".implode(',',$newvalues).")"
            
$qres $connect->Execute($qinsert) or safe_die ($clang->gT("Error")."Failed to insert question<br />\n$qinsert<br />\n".$connect->ErrorMsg());

            
//GET NEW QID  .... if is not done before and we count a question if a new qid is required
            
if (!isset($newqids[$oldqid])) 
            {
                
$newqids[$oldqid] = $connect->Insert_ID("{$dbprefix}questions",'qid');
                
$countquestions++;
            }
        }
    }
    
// QESTIONS is DONE
    
    // do ANSWERS
    
if (isset($answerarray) && $answerarray
    {
        foreach (
$answerarray as $aa
        {
            
$aacfieldcontents=convertCSVRowToArray($aa,',','"');
            
$answerrowdata=array_combine($answerfieldnames,$aacfieldcontents);
            
            
// Skip not supported languages            
            
if (!in_array($answerrowdata['language'],$surveylanguages)) 
                continue;
                
            
// replace the qid for the new one (if there is no new qid in the $newqids array it mean that this answer is orphan -> error, skip this record)
            
if (isset($newqids[$answerrowdata["qid"]]))
                
$answerrowdata["qid"] = $newqids[$answerrowdata["qid"]];
            else
                continue; 
// a problem with this answer record -> don't consider

            
if ($importversion<=132)
            {
               
$answerrowdata["assessment_value"]=(int)$answerrowdata["code"];
            }

                
            
// Everything set - now insert it     
            
$answerrowdata array_map('convertCsvreturn2return'$answerrowdata);

        
// translate internal links
        
$answerrowdata['answer']=translink('survey'$oldsid$newsid$answerrowdata['answer']);

            
$newvalues=array_values($answerrowdata);
            
$newvalues=array_map(array(&$connect"qstr"),$newvalues); // quote everything accordingly
            
$ainsert "insert INTO {$dbprefix}answers (".implode(',',array_keys($answerrowdata)).") VALUES (".implode(',',$newvalues).")"
            
$ares $connect->Execute($ainsert) or safe_die ($clang->gT("Error")."Failed to insert answer<br />\n$ainsert<br />\n".$connect->ErrorMsg());
            
$countanswers++;
        }
    }
    
// ANSWERS is DONE

   // Fix Group sortorder 
   
fixsortorderGroups();
   
//... and for the questions inside the groups
   // get all group ids and fix questions inside each group
   
$gquery "SELECT gid FROM {$dbprefix}groups where sid=$newsid group by gid ORDER BY gid"//Get last question added (finds new qid)
   
$gres db_execute_assoc($gquery);
   while (
$grow $gres->FetchRow()) 
        {
        
fixsortorderQuestions(0,$grow['gid']);
        }
   } 
    
    
// do ATTRIBUTES
    
if (isset($question_attributesarray) && $question_attributesarray
    {
        
$fieldorders  =convertCSVRowToArray($question_attributesarray[0],',','"');
        unset(
$question_attributesarray[0]);
        foreach (
$question_attributesarray as $qar) {
            
$fieldcontents=convertCSVRowToArray($qar,',','"');
            
$qarowdata=array_combine($fieldorders,$fieldcontents);
            
            
// replace the qid for the new one (if there is no new qid in the $newqids array it mean that this attribute is orphan -> error, skip this record)
            
if (isset($newqids[$qarowdata["qid"]]))
                
$qarowdata["qid"] = $newqids[$qarowdata["qid"]];
            else
                continue; 
// a problem with this answer record -> don't consider
            
            
unset($qarowdata["qaid"]);

            
// Everything set - now insert it     
            
$newvalues=array_values($qarowdata);
            
$newvalues=array_map(array(&$connect"qstr"),$newvalues); // quote everything accordingly
            
$qainsert "insert INTO {$dbprefix}question_attributes (".implode(',',array_keys($qarowdata)).") VALUES (".implode(',',$newvalues).")"
            
$result=$connect->Execute($qainsert) or safe_die ("Couldn't insert question_attribute<br />$qainsert<br />".$connect->ErrorMsg());
            
$countquestion_attributes++;        
        }
    }
    
// ATTRIBUTES is DONE
    
    // do CONDITIONS
    
if (isset($conditionsarray) && $conditionsarray
    {
        
$fieldorders=convertCSVRowToArray($conditionsarray[0],',','"');
        unset(
$conditionsarray[0]);
        foreach (
$conditionsarray as $car) {
            
$fieldcontents=convertCSVRowToArray($car,',','"');
            
$conditionrowdata=array_combine($fieldorders,$fieldcontents);

            
$oldqid $conditionrowdata["qid"];
            
$oldcqid $conditionrowdata["cqid"];
            
            
// replace the qid for the new one (if there is no new qid in the $newqids array it mean that this condition is orphan -> error, skip this record)
            
if (isset($newqids[$oldqid]))
                
$conditionrowdata["qid"] = $newqids[$oldqid];
            else
                continue; 
// a problem with this answer record -> don't consider

            // replace the cqid for the new one (if there is no new qid in the $newqids array it mean that this condition is orphan -> error, skip this record)
            
if (isset($newqids[$oldcqid]))
                
$conditionrowdata["cqid"] = $newqids[$oldcqid];
            else
                continue; 
// a problem with this answer record -> don't consider

            
list($oldcsid$oldcgid$oldqidanscode) = explode("X",$conditionrowdata["cfieldname"],3);
            
            if (
$oldcgid != $oldgid)    // this means that the condition is in another group (so it should not have to be been exported -> skip it
                
continue;
            
            unset(
$conditionrowdata["cid"]); 
            
            
// recreate the cfieldname with the new IDs
            
$newcfieldname $newsid "X" $newgid "X" $conditionrowdata["cqid"] .substr($oldqidanscode,strlen($oldqid));
            
            
$conditionrowdata["cfieldname"] = $newcfieldname;
            if (!isset(
$conditionrowdata["method"]) || trim($conditionrowdata["method"])==''
            {
                
$conditionrowdata["method"]='==';
            }            
            
$newvalues=array_values($conditionrowdata);
            
$newvalues=array_map(array(&$connect"qstr"),$newvalues); // quote everything accordingly
            
$conditioninsert "insert INTO {$dbprefix}conditions (".implode(',',array_keys($conditionrowdata)).") VALUES (".implode(',',$newvalues).")"
            
$result=$connect->Execute($conditioninsert) or safe_die ("Couldn't insert condition<br />$conditioninsert<br />".$connect->ErrorMsg());
            
$countconditions++;
        }
    }
    
// CONDITIONS is DONE


if (isset($skippedlanguages))
{
    
$importgroup.='<font class="successtitle">'.$clang->gT("Import partially successful.")."</font><br /><br />";
    
$importgroup.=$clang->gT("The following languages in this group were not imported since the survey does not contain such a language: ")."<br />";
    foreach  (
$skippedlanguages as $sl)
    {
    
$importgroup.= getLanguageNameFromCode($grouprowdata['language'], false).'<br />';
    }
    
$importgroup.='<br />';
}
else
{
    
$importgroup .= "<br />\n<strong><font class='successtitle'>".$clang->gT("Success")."</font></strong><br />\n";
}
$importgroup .="<strong><u>".$clang->gT("Group Import Summary")."</u></strong><br />\n"
."<ul>\n\t<li>".$clang->gT("Groups").": ";
if (isset(
$countgroups)) {$importgroup .= $countgroups;}
$importgroup .= "</li>\n"
    
."\t<li>".$clang->gT("Questions").": ";
if (isset(
$countquestions)) {$importgroup .= $countquestions;}
$importgroup .= "</li>\n"
    
."\t<li>".$clang->gT("Answers").": ";
if (isset(
$countanswers)) {$importgroup .= $countanswers;}
$importgroup .= "</li>\n"
    
."\t<li>".$clang->gT("Conditions").": ";
if (isset(
$countconditions)) {$importgroup .= $countconditions;}
$importgroup .= "</li>\n"
."\t<li>".$clang->gT("Label Set").": ";
if (isset(
$countlabelsets)) {$importgroup .= $countlabelsets;}
$importgroup .= " (".$clang->gT("Labels").": ";
if (isset(
$countlabels)) {$importgroup .= $countlabels;}
$importgroup .= ")</li>\n";
$importgroup .= "\t<li>".$clang->gT("Question Attributes: ");
$importgroup .= $countquestion_attributes;
$importgroup .= "</li>\n</ul>\n";
$importgroup .= "<strong>".$clang->gT("Import of group is completed.")."</strong><br />&nbsp;\n";
$importgroup .= "<a href='$scriptname?sid=$newsid&amp;gid=$newgid'>".$clang->gT("Go to group")."</a><br />\n";
$importgroup .= "</td></tr></table><br />&nbsp;\n";


unlink($the_full_file_path);

?>