Merge pull request #23597 from colemanw/searchKitProximity
[civicrm-core.git] / CRM / Event / Import / Form / Summary.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
9 +--------------------------------------------------------------------+
10 */
11
12 /**
13 *
14 * @package CRM
15 * @copyright CiviCRM LLC https://civicrm.org/licensing
16 */
17
18 /**
19 * This class summarizes the import results
20 */
21 class CRM_Event_Import_Form_Summary extends CRM_Import_Form_Summary {
22
23 /**
24 * Set variables up before form is built.
25 *
26 * @return void
27 */
28 public function preProcess() {
29 // set the error message path to display
30 $this->assign('errorFile', $this->get('errorFile'));
31
32 $totalRowCount = $this->get('totalRowCount');
33 $relatedCount = $this->get('relatedCount');
34 $totalRowCount += $relatedCount;
35 $this->set('totalRowCount', $totalRowCount);
36
37 $invalidRowCount = $this->get('invalidRowCount');
38 $duplicateRowCount = $this->get('duplicateRowCount');
39 $onDuplicate = $this->get('onDuplicate');
40 if ($duplicateRowCount > 0) {
41 $urlParams = 'type=' . CRM_Import_Parser::DUPLICATE . '&parser=CRM_Event_Import_Parser_Participant';
42 $this->set('downloadDuplicateRecordsUrl', CRM_Utils_System::url('civicrm/export', $urlParams));
43 }
44 else {
45 $duplicateRowCount = 0;
46 $this->set('duplicateRowCount', $duplicateRowCount);
47 }
48
49 $this->assign('dupeError', FALSE);
50
51 if ($onDuplicate == CRM_Import_Parser::DUPLICATE_UPDATE) {
52 $dupeActionString = ts('These records have been updated with the imported data.');
53 }
54 elseif ($onDuplicate == CRM_Import_Parser::DUPLICATE_FILL) {
55 $dupeActionString = ts('These records have been filled in with the imported data.');
56 }
57 else {
58 /* Skip by default */
59
60 $dupeActionString = ts('These records have not been imported.');
61
62 $this->assign('dupeError', TRUE);
63
64 /* only subtract dupes from successful import if we're skipping */
65
66 $this->set('validRowCount', $totalRowCount - $invalidRowCount -
67 $duplicateRowCount
68 );
69 }
70 $this->assign('dupeActionString', $dupeActionString);
71
72 $properties = [
73 'totalRowCount',
74 'validRowCount',
75 'invalidRowCount',
76 'downloadErrorRecordsUrl',
77 'duplicateRowCount',
78 'downloadDuplicateRecordsUrl',
79 'groupAdditions',
80 ];
81 foreach ($properties as $property) {
82 $this->assign($property, $this->get($property));
83 }
84 }
85
86 }