|
Server : Apache/2.4.62 System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64 User : www ( 80) PHP Version : 8.3.8 Disable Function : NONE Directory : /domains/irtiweb/CATS/modules/import/ |
Upload File : |
<?php /* $Id: Import2.tpl 3370 2007-11-01 16:43:07Z andrew $ */ ?>
<?php TemplateUtility::printHeader('Import', array('modules/import/import.js')); ?>
<?php TemplateUtility::printHeaderBlock(); ?>
<?php TemplateUtility::printTabs($this->active, '', 'settings'); ?>
<div id="main">
<?php TemplateUtility::printQuickSearch(); ?>
<div id="contents">
<table>
<tr>
<td width="3%">
<img src="images/reports.gif" width="24" height="24" border="0" alt="Import" style="margin-top: 3px;" />
</td>
<td><h2>Import Data</h2></td>
</tr>
</table>
<?php if (isset($this->errorMessage)): ?>
<p class="warning" id="importHide0">Error!</p>
<table class="searchTable" id="importHide1">
<tr>
<td>
<?php echo($this->errorMessage); ?>
</td>
</tr>
</table>
<br />
<?php elseif (isset($this->successMessage)): ?>
<p class="note" id="importHide0">Success</p>
<table class="searchTable" id="importHide1">
<tr>
<td>
<?php echo($this->successMessage); ?>
</td>
</tr>
</table>
<br />
<?php elseif (isset($this->pendingCommits)): ?>
<p class="warning" id="importHide0">Notice</p>
<table class="searchTable" id="importHide1">
<tr>
<td>
You have recently imported CSV data. You can click here to review or delete the imported data.<br />
<input type="button" onclick="document.location.href='<?php echo(CATSUtility::getIndexName()); ?>?m=import&a=viewpending';" value="View Recent Imports" class="button" />
</td>
</tr>
</table>
<br />
<?php else: ?>
<p class="note" id="importHide2">Import Data - Step 2</p>
<table class="searchTable" id="importTable1" width="100%">
<tr>
<td>CATS may discard or fail to read some of the submitted data which it does not
understand how to use. Do not discard the original data!
</td>
</tr>
</table>
<br />
<?php endif; ?>
<form name="importDataForm" id="importDataForm" action="<?php echo(CATSUtility::getIndexName()); ?>?m=import&a=importUploadFile" enctype="multipart/form-data" method="post" autocomplete="off" onsubmit="document.getElementById('nextSpan').style.display='none'; document.getElementById('uploadingSpan').style.display='';">
<table class="searchTable" width="740" id="importHide3" width="100%">
<tr>
<td class="tdVertical">
<label id="fileLabel" for="file">Import Into:</label>
</td>
<td class="tdData">
<?php if ($this->typeOfImport == 'Candidates'): ?>
<img src="images/candidate_inline.gif"> Candidates
<?php elseif ($this->typeOfImport == 'Companies'): ?>
<img src="images/mru/company.gif"> Companies
<?php elseif ($this->typeOfImport == 'Contacts'): ?>
<img src="images/mru/contact.gif"> Contacts
<?php endif; ?>
</td>
</tr>
<tr>
<td class="tdVertical">
<label id="fileLabel" for="file">File:</label>
</td>
<td class="tdData">
<input type="file" id="file" name="file" style="width: 260px;" />
</td>
</tr>
<tr>
<td class="tdVertical">
<label id="dataTypeLabel" for="dataType">File Format:</label>
</td>
<td class="tdData">
<input type="hidden" name="typeOfImport" value="<?php echo($this->typeOfImport); ?>">
<input type="radio" name="typeOfFile" value="csv" checked> Comma Delimited (CSV)<br />
<input type="radio" name="typeOfFile" value="tab" > Tab Delimited<br />
<br />
<span id="nextSpan">
<input class="button" type="button" value="Back" onclick="document.location.href='?m=import';">
<input class="button" type="submit" value="Next">
</span>
<span id="uploadingSpan" style="display:none;">
Uploading file, please wait...<br />
<img src="images/loading.gif" />
</span>
</td>
</td>
</tr>
</table>
</form>
</div>
</div>
<?php TemplateUtility::printFooter(); ?>