[ Index ] |
PHP Cross Reference of vtigercrm-6.1.0 |
[Summary view] [Print] [Text view]
1 {*<!-- 2 /********************************************************************************* 3 ** The contents of this file are subject to the vtiger CRM Public License Version 1.0 4 * ("License"); You may not use this file except in compliance with the License 5 * The Original Code is: vtiger CRM Open Source 6 * The Initial Developer of the Original Code is vtiger. 7 * Portions created by vtiger are Copyright (C) vtiger. 8 * All Rights Reserved. 9 * 10 ********************************************************************************/ 11 -->*} 12 {strip} 13 14 {literal} 15 <script type="text/javascript"> 16 jQuery(document).ready(function() { 17 setTimeout(function() { 18 jQuery("[name=importStatusForm]").get(0).submit(); 19 }, 2000); 20 }); 21 </script> 22 {/literal} 23 <div id="toggleButton" class="toggleButton" title="{vtranslate('LBL_LEFT_PANEL_SHOW_HIDE', 'Vtiger')}"> 24 <i id="tButtonImage" class="{if $LEFTPANELHIDE neq '1'}icon-chevron-left{else}icon-chevron-right{/if}"></i> 25 </div>  26 <div style="padding-left: 15px;"> 27 <form onsubmit="VtigerJS_DialogBox.block();" action="index.php" enctype="multipart/form-data" method="POST" name="importStatusForm"> 28 <input type="hidden" name="module" value="{$FOR_MODULE}" /> 29 <input type="hidden" name="view" value="Import" /> 30 {if $CONTINUE_IMPORT eq 'true'} 31 <input type="hidden" name="mode" value="continueImport" /> 32 {else} 33 <input type="hidden" name="mode" value="" /> 34 {/if} 35 </form> 36 <table style=" width:90%;margin-left: 5% " cellpadding="10" class="searchUIBasic well"> 37 <tr> 38 <td class="font-x-large" align="left" colspan="2"> 39 {'LBL_IMPORT'|@vtranslate:$MODULE} {$FOR_MODULE|@vtranslate:$FOR_MODULE} - 40 <span class="redColor">{'LBL_RUNNING'|@vtranslate:$MODULE} ... </span> 41 </td> 42 </tr> 43 {if $ERROR_MESSAGE neq ''} 44 <tr> 45 <td class="style1" align="left" colspan="2"> 46 {$ERROR_MESSAGE} 47 </td> 48 </tr> 49 {/if} 50 <tr> 51 <td valign="top"> 52 <table cellpadding="10" cellspacing="0" align="center" class="dvtSelectedCell thickBorder importContents"> 53 <tr> 54 <td>{'LBL_TOTAL_RECORDS_IMPORTED'|@vtranslate:$MODULE}</td> 55 <td width="10%">:</td> 56 <td width="30%">{$IMPORT_RESULT.IMPORTED} / {$IMPORT_RESULT.TOTAL}</td> 57 </tr> 58 <tr> 59 <td colspan="3"> 60 <table cellpadding="10" cellspacing="0" class="calDayHour"> 61 <tr> 62 <td>{'LBL_NUMBER_OF_RECORDS_CREATED'|@vtranslate:$MODULE}</td> 63 <td width="10%">:</td> 64 <td width="10%">{$IMPORT_RESULT.CREATED}</td> 65 </tr> 66 <tr> 67 <td>{'LBL_NUMBER_OF_RECORDS_UPDATED'|@vtranslate:$MODULE}</td> 68 <td width="10%">:</td> 69 <td width="10%">{$IMPORT_RESULT.UPDATED}</td> 70 </tr> 71 {if in_array($FOR_MODULE, $INVENTORY_MODULES) eq FALSE} 72 <tr> 73 <td>{'LBL_NUMBER_OF_RECORDS_SKIPPED'|@vtranslate:$MODULE}</td> 74 <td width="10%">:</td> 75 <td width="10%">{$IMPORT_RESULT.SKIPPED}</td> 76 </tr> 77 <tr> 78 <td>{'LBL_NUMBER_OF_RECORDS_MERGED'|@vtranslate:$MODULE}</td> 79 <td width="10%">:</td> 80 <td width="10%">{$IMPORT_RESULT.MERGED}</td> 81 </tr> 82 {/if} 83 </table> 84 </td> 85 </tr> 86 </table> 87 </td> 88 </tr> 89 <tr> 90 <td align="right"> 91 <button name="cancel" class="delete btn btn-danger" 92 onclick="location.href='index.php?module={$FOR_MODULE}&view=Import&mode=cancelImport&import_id={$IMPORT_ID}'"><strong>{'LBL_CANCEL_IMPORT'|@vtranslate:$MODULE}</strong></button> 93 </td> 94 </tr> 95 </table> 96 </div> 97 {/strip}
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Fri Nov 28 20:08:37 2014 | Cross-referenced by PHPXref 0.7.1 |