]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/SearchForm/tpls/SearchFormGeneric.tpl
Release 6.4.1
[Github/sugarcrm.git] / include / SearchForm / tpls / SearchFormGeneric.tpl
1 {*
2 /*********************************************************************************
3  * SugarCRM Community Edition is a customer relationship management program developed by
4  * SugarCRM, Inc. Copyright (C) 2004-2012 SugarCRM Inc.
5  * 
6  * This program is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU Affero General Public License version 3 as published by the
8  * Free Software Foundation with the addition of the following permission added
9  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
10  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
11  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
12  * 
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
16  * details.
17  * 
18  * You should have received a copy of the GNU Affero General Public License along with
19  * this program; if not, see http://www.gnu.org/licenses or write to the Free
20  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21  * 02110-1301 USA.
22  * 
23  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
24  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
25  * 
26  * The interactive user interfaces in modified source and object code versions
27  * of this program must display Appropriate Legal Notices, as required under
28  * Section 5 of the GNU Affero General Public License version 3.
29  * 
30  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
31  * these Appropriate Legal Notices must retain the display of the "Powered by
32  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
33  * technical reasons, the Appropriate Legal Notices must display the words
34  * "Powered by SugarCRM".
35  ********************************************************************************/
36
37 *}
38 {{* If templateMeta.maxColumnsBasic is not set, use maxColumns *}}
39 {if !isset($templateMeta.maxColumnsBasic)}
40         {assign var="basicMaxColumns" value=$templateMeta.maxColumns}
41 {else}
42     {assign var="basicMaxColumns" value=$templateMeta.maxColumnsBasic}
43 {/if}
44
45 <table width="100%" cellspacing="0" cellpadding="0" border="0">
46 <tr>
47 {{assign var='accesskeycount' value=0}}  {{assign var='ACCKEY' value=''}}
48 {{foreach name=colIteration from=$formData key=col item=colData}}
49     {{math assign="accesskeycount" equation="$accesskeycount + 1"}}
50     {{if $accesskeycount==1}} {{assign var='ACCKEY' value=$APP.LBL_FIRST_INPUT_SEARCH_KEY}} {{else}} {{assign var='ACCKEY' value=''}} {{/if}}
51
52         {counter assign=index}
53         {math equation="left % right"
54                   left=$index
55           right=$basicMaxColumns
56           assign=modVal
57     }
58         {if ($index % $basicMaxColumns == 1 && $index != 1)}
59                 </tr><tr>
60         {/if}
61         
62         <td scope="row" nowrap="nowrap" width='1%' >
63         {{if isset($colData.field.label)}}      
64                 <label for='{{$colData.field.name}}' >{sugar_translate label='{{$colData.field.label}}' module='{{$module}}'}</label>
65     {{elseif isset($fields[$colData.field.name])}}
66                 <label for='{{$fields[$colData.field.name].name}}'> {sugar_translate label='{{$fields[$colData.field.name].vname}}' module='{{$module}}'}
67         {{/if}}
68         </td>
69
70         
71         <td  nowrap="nowrap" width='1%'>
72         {{if $fields[$colData.field.name]}}
73                 {{sugar_field parentFieldArray='fields' vardef=$fields[$colData.field.name] accesskey=$ACCKEY displayType='searchView' displayParams=$colData.field.displayParams typeOverride=$colData.field.type formName=$form_name}}
74         {{/if}}
75         </td>
76 {{/foreach}}
77     {if $formData|@count >= $basicMaxColumns+1}
78     </tr>
79     <tr>
80         <td colspan="{$searchTableColumnCount}">
81     {else}
82         <td class="sumbitButtons">
83     {/if}
84         {{sugar_button module="$module" id="search" view="searchView"}}
85             <input tabindex='2' title='{$APP.LBL_CLEAR_BUTTON_TITLE}' onclick='SUGAR.searchForm.clear_form(this.form); return false;' class='button' type='button' name='clear' id='search_form_clear' value='{$APP.LBL_CLEAR_BUTTON_LABEL}'/>
86         {if $HAS_ADVANCED_SEARCH}
87             &nbsp;&nbsp;<a id="advanced_search_link" onclick="SUGAR.searchForm.searchFormSelect('{$module}|advanced_search','{$module}|basic_search')" href="javascript:void(0);" accesskey="{$APP.LBL_ADV_SEARCH_LNK_KEY}" >{$APP.LNK_ADVANCED_SEARCH}</a>
88             {/if}
89     </td>
90         <td class="helpIcon" width="*"><img alt="Help" border='0' src='{sugar_getimagepath file="help-dashlet.gif"}' onmouseover="return overlib(SUGAR.language.get('app_strings', 'LBL_SEARCH_HELP_TEXT'), STICKY, MOUSEOFF,1000,WIDTH, 700, LEFT,CAPTION,'<div style=\'float:left\'>'+SUGAR.language.get('app_strings', 'LBL_SEARCH_HELP_TITLE')+'</div>', CLOSETEXT, '<div style=\'float: right\'><img border=0 style=\'margin-left:2px; margin-right: 2px;\' src={sugar_getimagepath file='close.gif'}></div>',CLOSETITLE, SUGAR.language.get('app_strings', 'LBL_SEARCH_HELP_CLOSE_TOOLTIP'), CLOSECLICK,FGCLASS, 'olFgClass', CGCLASS, 'olCgClass', BGCLASS, 'olBgClass', TEXTFONTCLASS, 'olFontClass', CAPTIONFONTCLASS, 'olCapFontClass');" class="help-search"></td>
91         </tr>
92 </table>