|
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: Import1.tpl 3780 2007-12-03 21:13:56Z 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" width="100%">
<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" width="100%">
<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 endif; ?>
<p class="note">Import Data</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 />
<table class="searchTable" id="importTable2" width="100%">
<tr>
<td>What would you like to import?<br />
<br />
<form name="importDataForm" id="importDataForm" action="<?php echo(CATSUtility::getIndexName()); ?>" method="get" autocomplete="off">
<input type="hidden" name="m" value="import">
<input type="hidden" name="a" value="importSelectType">
<input type="radio" name="typeOfImport" value="resume" checked> <img src="images/file/doc.gif"> Resumes<br />
<input type="radio" name="typeOfImport" value="Candidates"> <img src="images/candidate_inline.gif"> Candidates<br />
<input type="radio" name="typeOfImport" value="Companies" > <img src="images/mru/company.gif"> Companies<br />
<input type="radio" name="typeOfImport" value="Contacts" > <img src="images/mru/contact.gif"> Contacts<br />
<br />
<input class="button" type="submit" value="Next">
</td>
</form>
</tr>
</table>
<?php if ($this->bulk['numBulkAttachments'] > 0 && $_SESSION['CATS']->getAccessLevel() >= ACCESS_LEVEL_SA): ?>
<br />
<div style="background-color: #f0f0f0; color: #000000; border: 1px solid #000000; text-align: left; font-size: 14px; padding: 10px; margin: 0 0 15px 0; font-weight: normal;">
You have uploaded <b><?php echo number_format($this->bulk['numBulkAttachments'], 0); ?></b>
unclassified resume documents. You can search these documents; but, they are not attached to
candidates because candidate information (like their name, address, etc.) was not available when they were uploaded.
<br /><br />
Rescan the documents to try to automatically detect candidate information. Enter it manually if necessary.
<br /><br />
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="padding-right: 10px;">
<input type="button" value="Rescan Documents" name="rescan" id="rescanButton" class="button" onclick="document.location.href='<?php echo CATSUtility::getIndexName(); ?>?m=import&a=importBulkResumes';" />
</td>
<td>
<input type="button" value="Delete Documents" name="delete" id="deleteButton" class="button" onclick="if (confirm('This will delete all searchable attachments that have not been associated with candidates. This action cannot be undone. Are you sure you want to continue?')) document.location.href='<?php echo CATSUtility::getIndexName(); ?>?m=import&a=deleteBulkResumes';" />
</td>
</tr>
</table>
</div>
<?php endif; ?>
<br />
</div>
</div>
<?php TemplateUtility::printFooter(); ?>