]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/DetailView/DetailView.tpl
Release 6.1.4
[Github/sugarcrm.git] / include / DetailView / DetailView.tpl
1 {*
2 /*********************************************************************************
3  * SugarCRM is a customer relationship management program developed by
4  * SugarCRM, Inc. Copyright (C) 2004-2011 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 {{include file=$headerTpl}}
39 {sugar_include include=$includes}
40 <div id="{{$module}}_detailview_tabs" 
41 {{if $useTabs}}
42 class="yui-navset detailview_tabs"
43 {{/if}}
44 >
45     {{if $useTabs}}
46     {* Generate the Tab headers *}
47     {{counter name="tabCount" start=-1 print=false assign="tabCount"}}
48     <ul class="yui-nav">
49     {{foreach name=section from=$sectionPanels key=label item=panel}}
50         {{counter name="tabCount" print=false}}
51         <li><a id="tab{{$tabCount}}" href="#tab{{$tabCount}}"><em>{sugar_translate label='{{$label}}' module='{{$module}}'}</em></a></li>
52     {{/foreach}}
53     </ul>
54     {{/if}}
55     <div {{if $useTabs}}class="yui-content"{{/if}}>
56 {{* Loop through all top level panels first *}}
57 {{counter name="panelCount" print=false start=0 assign="panelCount"}}
58 {{foreach name=section from=$sectionPanels key=label item=panel}}
59 {{assign var='panel_id' value=$panelCount}}
60 <div id='{{$label}}' class='detail view'>
61 {counter name="panelFieldCount" start=0 print=false assign="panelFieldCount"}
62 {{* Print out the panel title if one exists*}}
63
64 {{* Check to see if the panel variable is an array, if not, we'll attempt an include with type param php *}}
65 {{* See function.sugar_include.php *}}
66 {{if !is_array($panel)}}
67     {sugar_include type='php' file='{{$panel}}'}
68 {{else}}
69         
70         {{if !empty($label) && !is_int($label) && $label != 'DEFAULT' && !$useTabs}}
71         <h4>{sugar_translate label='{{$label}}' module='{{$module}}'}</h4>
72         {{/if}}
73         {{* Print out the table data *}}
74         <table id='detailpanel_{{$smarty.foreach.section.iteration}}' cellspacing='{$gridline}'>
75         
76
77         
78         {{foreach name=rowIteration from=$panel key=row item=rowData}}
79         <tr>
80                 {{assign var='columnsInRow' value=$rowData|@count}}
81                 {{assign var='columnsUsed' value=0}}
82             {{foreach name=colIteration from=$rowData key=col item=colData}}
83                         <td width='{{$def.templateMeta.widths[$smarty.foreach.colIteration.index].label}}%' scope="row">
84                                 {{if isset($colData.field.customLabel)}}
85                                {{$colData.field.customLabel}}
86                                 {{elseif isset($colData.field.label) && strpos($colData.field.label, '$')}}
87                                    {capture name="label" assign="label"}
88                                    {{$colData.field.label}}
89                                    {/capture}
90                                {$label|strip_semicolon}:
91                                 {{elseif isset($colData.field.label)}}
92                                    {capture name="label" assign="label"}
93                                    {sugar_translate label='{{$colData.field.label}}' module='{{$module}}'}
94                                    {/capture}
95                                {$label|strip_semicolon}:
96                                 {{elseif isset($fields[$colData.field.name])}}
97                                    {capture name="label" assign="label"}
98                                    {sugar_translate label='{{$fields[$colData.field.name].vname}}' module='{{$module}}'}
99                                    {/capture}
100                                {$label|strip_semicolon}:
101                                 {{else}}
102                                    &nbsp;
103                                 {{/if}}
104                         </td>
105                         <td width='{{$def.templateMeta.widths[$smarty.foreach.colIteration.index].field}}%' {{if $colData.colspan}}colspan='{{$colData.colspan}}'{{/if}}>
106                                 {{if $colData.field.customCode || $colData.field.assign}}
107                                         {counter name="panelFieldCount"}
108                                         {{sugar_evalcolumn var=$colData.field colData=$colData}}        
109                                 {{elseif $fields[$colData.field.name] && !empty($colData.field.fields) }}
110                                     {{foreach from=$colData.field.fields item=subField}}
111                                         {{if $fields[$subField]}}
112                                                 {counter name="panelFieldCount"}
113                                             {{sugar_field parentFieldArray='fields' tabindex=$tabIndex vardef=$fields[$subField] displayType='DetailView'}}&nbsp;
114                                         {{else}}
115                                                 {counter name="panelFieldCount"}
116                                             {{$subField}}
117                                         {{/if}}
118                                     {{/foreach}}                                                        
119                                 {{elseif $fields[$colData.field.name]}}
120                                         {counter name="panelFieldCount"}
121                                         {{sugar_field parentFieldArray='fields' vardef=$fields[$colData.field.name] displayType='DetailView' displayParams=$colData.field.displayParams typeOverride=$colData.field.type}}
122                                 {{/if}}
123                         </td>
124                 {{/foreach}}
125         </tr>
126         {{/foreach}}
127         </table>
128 {{/if}}
129 </div>
130 {if $panelFieldCount == 0}
131
132 <script>document.getElementById("{{$label}}").style.display='none';</script>
133 {/if}
134 {{/foreach}}
135 </div></div>
136 {{include file=$footerTpl}}
137 {{if $useTabs}}
138 <script type="text/javascript" src="include/javascript/sugar_grp_yui_widgets.js"></script>
139 <script type="text/javascript">
140 var {{$module}}_detailview_tabs = new YAHOO.widget.TabView("{{$module}}_detailview_tabs");
141 {{$module}}_detailview_tabs.selectTab(0);
142 </script> 
143 {{/if}}