[ 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 class="modelContainer"> 14 <div class="modal-header"> 15 <button class="close vtButton" data-dismiss="modal">×</button> 16 <h3>{vtranslate('LBL_DELETE_RECORD', $QUALIFIED_MODULE)} {vtranslate('SINGLE_'|cat:$MODULE, $QUALIFIED_MODULE)} - {$RECORD_MODEL->getName()}</h3> 17 </div> 18 <form class="form-horizontal" id="DeleteModal" name="AddComment" method="post" action="index.php"> 19 <input type="hidden" name="module" value="{$MODULE}" /> 20 <input type="hidden" name="parent" value="Settings" /> 21 <input type="hidden" name="action" value="DeleteAjax" /> 22 <input type="hidden" name="record" id="record" value="{$RECORD_MODEL->getId()}" /> 23 <div class="modal-body tabbable"> 24 <div class="control-group"> 25 <span class="control-label"> 26 <strong> 27 {vtranslate('LBL_TRANSFORM_OWNERSHIP', $QUALIFIED_MODULE)} {vtranslate('LBL_TO', $QUALIFIED_MODULE)}<span class="redColor">*</span> 28 </strong> 29 </span> 30 <div class="controls"> 31 <select id="transfer_record" name="transfer_record" class="chzn-select"> 32 <optgroup label="{vtranslate('LBL_USERS', $QUALIFIED_MODULE)}"> 33 {foreach from=$ALL_USERS key=USER_ID item=USER_MODEL} 34 <option value="{$USER_ID}">{$USER_MODEL->getName()}</option> 35 {/foreach} 36 </optgroup> 37 <optgroup label="{vtranslate('LBL_GROUPS', $QUALIFIED_MODULE)}"> 38 {foreach from=$ALL_GROUPS key=GROUP_ID item=GROUP_MODEL} 39 {if $RECORD_MODEL->getId() != $GROUP_ID } 40 <option value="{$GROUP_ID}">{$GROUP_MODEL->getName()}</option> 41 {/if} 42 {/foreach} 43 </optgroup> 44 </select> 45 </div> 46 </div> 47 </div> 48 49 <div class="modal-footer"> 50 <div class=" pull-right cancelLinkContainer"><a class="cancelLink" type="reset" data-dismiss="modal">{vtranslate('LBL_CANCEL', $MODULE)}</a></div> 51 <button class="btn btn-success" type="submit">{vtranslate('LBL_SAVE', $MODULE)}</button> 52 </div> 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 |