[ 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 13 <div class="dashboardWidgetHeader"> 14 {include file="dashboards/WidgetHeader.tpl"|@vtemplate_path:$MODULE_NAME SETTING_EXIST=true} 15 <div class="row-fluid filterContainer hide" style="position:absolute;z-index:100001"> 16 <div class="row-fluid"> 17 <span class="span5"> 18 <span class="pull-right"> 19 {vtranslate('Created Time', $MODULE_NAME)} {vtranslate('LBL_BETWEEN', $MODULE_NAME)} 20 </span> 21 </span> 22 <span class="span4"> 23 <input type="text" name="createdtime" class="dateRange widgetFilter" /> 24 </span> 25 </div> 26 <div class="row-fluid"> 27 <span class="span5"> 28 <span class="pull-right"> 29 {vtranslate('Assigned To', $MODULE_NAME)} 30 </span> 31 </span> 32 <span class="span4"> 33 {assign var=CURRENT_USER_ID value=$CURRENTUSER->getId()} 34 <select class="widgetFilter" name="owner"> 35 <option value="">{vtranslate('LBL_ALL', $MODULE_NAME)}</option> 36 {foreach key=USER_ID item=USER_NAME from=$ACCESSIBLE_USERS} 37 <option value="{$USER_ID}"> 38 {if $USER_ID eq $CURRENTUSER->getId()} 39 {vtranslate('LBL_MINE',$MODULE_NAME)} 40 {else} 41 {$USER_NAME} 42 {/if} 43 </option> 44 {/foreach} 45 </select> 46 </span> 47 </div> 48 </div> 49 </div> 50 <div class="dashboardWidgetContent"> 51 {include file="dashboards/DashBoardWidgetContents.tpl"|@vtemplate_path:$MODULE_NAME} 52 </div>
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 |