-
-
Notifications
You must be signed in to change notification settings - Fork 824
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1e527a3
commit f36f72e
Showing
3 changed files
with
114 additions
and
107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
<div class="crm-block crm-form-block crm-import-maptable-form-block"> | ||
|
||
{* Import Wizard - Data Mapping table used by MapFields.tpl and Preview.tpl *} | ||
<div id="map-field"> | ||
{strip} | ||
<table class="selector"> | ||
{if $savedMappingName} | ||
<tr class="columnheader-dark"><th colspan="4">{ts 1=$savedMappingName}Saved Field Mapping: %1{/ts}</td></tr> | ||
{/if} | ||
|
||
{* Header row - has column for column names if they have been supplied *} | ||
<tr class="columnheader"> | ||
{if $columnNames} | ||
<td>{ts}Column Names{/ts}</td> | ||
{/if} | ||
{foreach from=$dataValues item=row key=index} | ||
{math equation="x + y" x=$index y=1 assign="rowNumber"} | ||
<td>{ts 1=$rowNumber}Import Data (row %1){/ts}</td> | ||
{/foreach} | ||
<td>{ts}Matching CiviCRM Field{/ts}</td> | ||
</tr> | ||
|
||
{*Loop on columns parsed from the import data rows*} | ||
{foreach from=$mapper key=i item=mapperField} | ||
<tr style="border: 1px solid #DDDDDD;"> | ||
{if array_key_exists($i, $columnNames)} | ||
<td class="even-row labels">{$columnNames[$i]}</td> | ||
{/if} | ||
{foreach from=$dataValues item=row key=index} | ||
<td class="odd-row">{$row[$i]|escape}</td> | ||
{/foreach} | ||
|
||
{* Display mapper <select> field for 'Map Fields', and mapper value for 'Preview' *} | ||
<td class="form-item even-row{if $wizard.currentStepName == 'Preview'} labels{/if}"> | ||
{if $wizard.currentStepName == 'Preview'} | ||
{$mapperField} | ||
{else} | ||
{$mapperField.html|smarty:nodefaults} | ||
{/if} | ||
</td> | ||
</tr> | ||
{/foreach} | ||
</table> | ||
{/strip} | ||
|
||
{if $wizard.currentStepName != 'Preview'} | ||
<div> | ||
{if $savedMappingName} | ||
<span>{$form.updateMapping.html} {$form.updateMapping.label}</span> | ||
{/if} | ||
<span>{$form.saveMapping.html} {$form.saveMapping.label}</span> | ||
<div id="saveDetails" class="form-item"> | ||
<table class="form-layout-compressed"> | ||
<tr class="crm-import-maptable-form-block-saveMappingName"> | ||
<td class="label">{$form.saveMappingName.label}</td> | ||
<td>{$form.saveMappingName.html}</td> | ||
</tr> | ||
<tr class="crm-import-maptable-form-block-saveMappingName"> | ||
<td class="label">{$form.saveMappingDesc.label}</td> | ||
<td>{$form.saveMappingDesc.html}</td> | ||
</tr> | ||
</table> | ||
</div> | ||
{literal} | ||
<script type="text/javascript"> | ||
if (cj('#saveMapping').prop('checked')) { | ||
cj('#saveDetails').show(); | ||
} else { | ||
cj('#saveDetails').hide(); | ||
} | ||
|
||
function showSaveDetails(chkbox) { | ||
if (chkbox.checked) { | ||
document.getElementById("saveDetails").style.display = "block"; | ||
document.getElementById("saveMappingName").disabled = false; | ||
document.getElementById("saveMappingDesc").disabled = false; | ||
} else { | ||
document.getElementById("saveDetails").style.display = "none"; | ||
document.getElementById("saveMappingName").disabled = true; | ||
document.getElementById("saveMappingDesc").disabled = true; | ||
} | ||
} | ||
cj('select[id^="mapper"][id$="[0]"]').addClass('huge'); | ||
{/literal} | ||
{include file="CRM/common/highLightImport.tpl"} | ||
</script> | ||
</div> | ||
{/if} | ||
|
||
|
||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters