[ 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 <div id="massEditContainer" class='modelContainer'> 14 <div class="modal-header contentsBackground"> 15 <button data-dismiss="modal" class="close" title="{vtranslate('LBL_CLOSE')}">×</button> 16 <h3 id="massEditHeader">{vtranslate('Transfer records to user', $MODULE)}</h3> 17 </div> 18 <form class="form-horizontal" id="deleteUser" name="deleteUser" method="post" action="index.php"> 19 <input type="hidden" name="module" value="{$MODULE}" /> 20 <input type="hidden" name="userid" value="{$USERID}" /> 21 <div name='massEditContent'> 22 <div class="modal-body tabbable"> 23 <div class="tab-content massEditContent"> 24 <table class="massEditTable table table-bordered"> 25 <tr> 26 <td class="fieldLabel alignMiddle">{vtranslate('User to be deleted', $MODULE)}</td> 27 <td class="fieldValue">{$DELETE_USER_NAME}</td> 28 </tr> 29 <tr> 30 <td class="fieldLabel alignMiddle">{vtranslate('Transfer records to user', $MODULE)}</td> 31 <td class="fieldValue"> 32 <select class="chzn-select {if $OCCUPY_COMPLETE_WIDTH} row-fluid {/if}" name="tranfer_owner_id" data-validation-engine="validate[ required]" > 33 {foreach item=USER_MODEL key=USER_ID from=$USER_LIST} 34 <option value="{$USER_ID}" >{$USER_MODEL->getName()}</option> 35 {/foreach} 36 </select> 37 </td> 38 </tr> 39 {if !$PERMANENT} 40 <tr> 41 <td colspan="2" style="padding-left: 20px;"> 42 <label class='checkbox'> 43 <input type="checkbox" class="checkbox" name="deleteUserPermanent" value="1" > {vtranslate('LBL_DELETE_USER_PERMANENTLY',$MODULE)} 44 </label> 45 </td> 46 </tr> 47 {/if} 48 </table> 49 </div> 50 </div> 51 </div> 52 {include file='ModalFooter.tpl'|@vtemplate_path:$MODULE} 53 </form> 54 </div> 55 {/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 |