[ 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 {if $WIZARD_STEP eq 'step1'} 14 <div id="minilistWizardContainer" class='modelContainer'> 15 <div class="modal-header contentsBackground"> 16 <button data-dismiss="modal" class="close" title="{vtranslate('LBL_CLOSE')}">×</button> 17 <h3 id="massEditHeader">{vtranslate('LBL_MINI_LIST', $MODULE)} {vtranslate($MODULE, $MODULE)}</h3> 18 </div> 19 <form class="form-horizontal" method="post" action="javascript:;"> 20 <input type="hidden" name="module" value="{$MODULE}" /> 21 <input type="hidden" name="action" value="MassSave" /> 22 23 <table class="table table-bordered"> 24 <tbody> 25 <tr> 26 <td class="fieldLabel alignMiddle">{'LBL_SELECT_MODULE'|vtranslate}</td> 27 <td class="fieldValue"> 28 <select class="span4" name="module"> 29 <option></option> 30 {foreach from=$MODULES item=MODULE_MODEL key=MODULE_NAME} 31 <option value="{$MODULE_NAME}">{vtranslate($MODULE_NAME, $MODULE_NAME)}</option> 32 {/foreach} 33 </select> 34 </td> 35 </tr> 36 <tr> 37 <td class="fieldLabel alignMiddle">{'LBL_FILTER'|vtranslate}</td> 38 <td class="fieldValue"> 39 <select class="span4" name="filterid"> 40 <option></option> 41 </select> 42 </td> 43 </tr> 44 <tr> 45 <td class="fieldLabel alignMiddle">{'LBL_EDIT_FIELDS'|vtranslate}</td> 46 <td class="fieldValue"> 47 <select class="span4" name="fields" size="2" multiple="true"> 48 <option></option> 49 </select> 50 </td> 51 </tr> 52 </tbody> 53 </table> 54 {include file='ModalFooter.tpl'|@vtemplate_path:$MODULE} 55 </form> 56 </div> 57 {elseif $WIZARD_STEP eq 'step2'} 58 <option></option> 59 {foreach from=$ALLFILTERS item=FILTERS key=FILTERGROUP} 60 <optgroup label="{$FILTERGROUP}"> 61 {foreach from=$FILTERS item=FILTER key=FILTERNAME} 62 <option value="{$FILTER->getId()}">{$FILTER->get('viewname')}</option> 63 {/foreach} 64 </optgroup> 65 {/foreach} 66 {elseif $WIZARD_STEP eq 'step3'} 67 <option></option> 68 {foreach from=$LIST_VIEW_CONTROLLER->getListViewHeaderFields() item=FIELD key=FIELD_NAME} 69 <option value="{$FIELD_NAME}">{vtranslate($FIELD->getFieldLabelKey(),$SELECTED_MODULE)}</option> 70 {/foreach} 71 {/if} 72 {/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 |