From 2a54e08ffaeba7d53071645a7653042a41d6a1ef Mon Sep 17 00:00:00 2001 From: Eileen McNaughton Date: Wed, 6 Jul 2022 18:34:40 +1200 Subject: [PATCH] Remove now-unused tpl --- templates/CRM/Import/Form/MapTable.tpl | 104 ------------------------- 1 file changed, 104 deletions(-) delete mode 100644 templates/CRM/Import/Form/MapTable.tpl diff --git a/templates/CRM/Import/Form/MapTable.tpl b/templates/CRM/Import/Form/MapTable.tpl deleted file mode 100644 index a805ef7d64..0000000000 --- a/templates/CRM/Import/Form/MapTable.tpl +++ /dev/null @@ -1,104 +0,0 @@ -{* - +--------------------------------------------------------------------+ - | Copyright CiviCRM LLC. All rights reserved. | - | | - | This work is published under the GNU AGPLv3 license with some | - | permitted exceptions and without any warranty. For full license | - | and copyright information, see https://civicrm.org/licensing | - +--------------------------------------------------------------------+ -*} -{* Import Wizard - Data Mapping table used by MapFields.tpl and Preview.tpl *} -
- -
- {strip} - - {if $savedMappingName} - - {/if} - - {section name=rows loop=$rowDisplayCount} - {if $skipColumnHeader } - {if $smarty.section.rows.iteration == 1} - - {else} - - {/if} - {else} - - {/if} - {/section} - - - - - {*Loop on columns parsed from the import data rows*} - {section name=cols loop=$columnCount} - {assign var="i" value=$smarty.section.cols.index} - - - {section name=rows loop=$rowDisplayCount} - {assign var="j" value=$smarty.section.rows.index} - - {/section} - - {* Display mapper - - - {/section} - -
{ts 1=$savedMappingName}Saved Field Mapping: %1{/ts}
{ts}Column Headers{/ts}{ts 1=$smarty.section.rows.iteration}Import Data (row %1){/ts}{ts 1=$smarty.section.rows.iteration}Import Data (row %1){/ts}{ts}Matching CiviCRM Field{/ts}
{$dataValues[$j][$i]|escape} - {if $wizard.currentStepName == 'Preview'} - {$mapper[$i]} - {else} - {$form.mapper[$i].html|smarty:nodefaults} - {/if} -
- {/strip} - - {if $wizard.currentStepName != 'Preview'} -
- - {if $savedMappingName} - {$form.updateMapping.html}    {$form.updateMapping.label} - {/if} - {$form.saveMapping.html}    {$form.saveMapping.label} -
- - - - - - - - -
{$form.saveMappingName.label}{$form.saveMappingName.html}
{$form.saveMappingDesc.label}{$form.saveMappingDesc.html}
-
- -
- {/if} -
-
-- 2.25.1