}
CRM_Utils_Address_USPS::disable($this->getSubmittedValue('disableUSPS'));
-
- // run the import
-
- $parser = $this->getParser();
- $parser->queue();
- $queue = Civi::queue('user_job_' . $this->getUserJobID());
- $runner = new CRM_Queue_Runner([
- 'queue' => $queue,
- 'errorMode' => CRM_Queue_Runner::ERROR_ABORT,
- 'onEndUrl' => CRM_Utils_System::url('civicrm/import/contact/summary', ['user_job_id' => $this->getUserJobID(), 'reset' => 1]),
- ]);
- $runner->runAllViaWeb();
+ $this->runTheImport();
}
/**
*/
public function preProcess() {
$userJobID = CRM_Utils_Request::retrieve('user_job_id', 'String', $this, TRUE);
- $userJob = UserJob::get(TRUE)->addWhere('id', '=', $userJobID)->execute()->first();
+ $userJob = UserJob::get(TRUE)->addWhere('id', '=', $userJobID)->addSelect('metadata', 'type_id:label')->execute()->first();
+ $this->setTitle($userJob['type_id:label']);
$onDuplicate = $userJob['metadata']['submitted_values']['onDuplicate'];
$this->assign('dupeError', FALSE);
$this->assign('dupeError', TRUE);
}
- $this->assign('groupAdditions', $this->getUserJob()['metadata']['summary_info']['groups']);
- $this->assign('tagAdditions', $this->getUserJob()['metadata']['summary_info']['tags']);
+ $this->assign('groupAdditions', $this->getUserJob()['metadata']['summary_info']['groups'] ?? []);
+ $this->assign('tagAdditions', $this->getUserJob()['metadata']['summary_info']['tags'] ?? []);
$this->assignOutputURLs();
$session = CRM_Core_Session::singleton();
$session->pushUserContext(CRM_Utils_System::url('civicrm/import/contact', 'reset=1'));
}
- /**
- * Clean up the import table we used.
- */
- public function postProcess() {
- }
-
}
* @return void
*/
public function postProcess() {
- CRM_Import_Parser::runImport(NULL, $this->getUserJobID(), 0);
+ $this->runTheImport();
+ }
+
+ /**
+ * Run the import.
+ */
+ protected function runTheImport(): void {
+ $parser = $this->getParser();
+ $parser->queue();
+ $queue = Civi::queue('user_job_' . $this->getUserJobID());
+ $runner = new CRM_Queue_Runner([
+ 'queue' => $queue,
+ 'errorMode' => CRM_Queue_Runner::ERROR_ABORT,
+ 'onEndUrl' => CRM_Utils_System::url('civicrm/import/contact/summary', [
+ 'user_job_id' => $this->getUserJobID(),
+ 'reset' => 1,
+ ]),
+ ]);
+ $runner->runAllViaWeb();
}
}
unset($sel1['membership_id']);
}
- $sel2[''] = NULL;
-
$js = "<script type='text/javascript'>\n";
$formName = 'document.forms.' . $this->_name;
);
}
}
- $sel->setOptions(array($sel1, $sel2));
+ $sel->setOptions([$sel1]);
}
$js .= "</script>\n";
$this->assign('initHideBoxes', $js);
/**
* This class summarizes the import results
+ * @todo - this class is no longer used - it just needs to
+ * be removed when the other summary classes are removed from the
+ * import controller.
*/
class CRM_Member_Import_Form_Summary extends CRM_Import_Form_Summary {
<p>{ts}Click 'Import Now' if you are ready to proceed.{/ts}</p>
</div>
<div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl" location="top"}</div>
- {include file="CRM/common/importProgress.tpl"}
+
{* Summary Preview (record counts) *}
<table id="preview-counts" class="report">
<tr><td class="label crm-grid-cell">{ts}Total Rows{/ts}</td>
| and copyright information, see https://civicrm.org/licensing |
+--------------------------------------------------------------------+
*}
-{* Membership Import Wizard - Step 4 (summary of import results AFTER actual data loading) *}
+{* Membership Import Wizard - no longer used - needs to be removed form the
+{* controller & this can be deleted *}
{* @var $form Contains the array for the form elements and other form associated information assigned to the template by the controller *}
-
-<div class="crm-block crm-form-block crm-member-import-summary-form-block">
- {* WizardHeader.tpl provides visual display of steps thru the wizard as well as title for current step *}
- {include file="CRM/common/WizardHeader.tpl"}
-
- <div class="help">
- <p>
- <strong>{ts}Import has completed successfully.{/ts}</strong> {ts}The information below summarizes the results.{/ts}
- </p>
-
- {if $invalidRowCount }
- <p class="error">
- {ts count=$invalidRowCount plural='CiviCRM has detected invalid data and/or formatting errors in %count records. These records have not been imported.'}CiviCRM has detected invalid data and/or formatting errors in one record. This record has not been imported.{/ts}
- </p>
- <p class="error">
- {ts 1=$downloadErrorRecordsUrl}You can <a href="%1">Download Errors</a>. You may then correct them, and import the new file with the corrected data.{/ts}
- </p>
- {/if}
-
- {if $duplicateRowCount}
- <p {if $dupeError}class="error"{/if}>
- {ts count=$duplicateRowCount plural='CiviCRM has detected %count records which are duplicates of existing CiviCRM membership records.'}CiviCRM has detected one record which is a duplicate of existing CiviCRM membership record.{/ts} {$dupeActionString}
- </p>
- <p {if $dupeError}class="error"{/if}>
- {ts 1=$downloadDuplicateRecordsUrl}You can <a href="%1">Download Duplicates</a>. You may then review these records to determine if they are actually duplicates, and correct the transaction IDs for those that are not.{/ts}
- </p>
- {/if}
- </div>
- <div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl" location="top"}</div>
- {* Summary of Import Results (record counts) *}
- <table id="summary-counts" class="report">
- <tr><td class="label crm-grid-cell">{ts}Total Rows{/ts}</td>
- <td class="data">{$totalRowCount}</td>
- <td class="explanation">{ts}Total rows (membership records) in uploaded file.{/ts}</td>
- </tr>
-
- {if $invalidRowCount }
- <tr class="error"><td class="label crm-grid-cell">{ts}Invalid Rows (skipped){/ts}</td>
- <td class="data">{$invalidRowCount}</td>
- <td class="explanation">{ts}Rows with invalid data in one or more fields. These rows will be skipped (not imported).{/ts}
- {if $invalidRowCount}
- <div class="action-link"><a href="{$downloadErrorRecordsUrl}"><i class="crm-i fa-download" aria-hidden="true"></i> {ts}Download Errors{/ts}</a></div>
- {/if}
- </td>
- </tr>
- {/if}
-
- {if $duplicateRowCount}
- <tr class="error"><td class="label crm-grid-cell">{ts}Duplicate Rows{/ts}</td>
- <td class="data">{$duplicateRowCount}</td>
- <td class="explanation">{ts}Rows which are duplicates of existing CiviCRM membership records.{/ts} {$dupeActionString}
- {if $duplicateRowCount}
- <p><a href="{$downloadDuplicateRecordsUrl}">{ts}Download Duplicates{/ts}</a></p>
- {/if}
- </td>
- </tr>
- {/if}
-
- <tr><td class="label crm-grid-cell">{ts}Records Imported{/ts}</td>
- <td class="data">{$validRowCount}</td>
- <td class="explanation">{ts}Rows imported successfully.{/ts}</td>
- </tr>
-
- </table>
-
- <div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl" location="bottom"}</div>
- </div>