]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/DetailView/header.tpl
Release 6.5.0
[Github/sugarcrm.git] / include / DetailView / header.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 {{* Add the preForm code if it is defined (used for vcards) *}}
39 {{if $preForm}}
40         {{$preForm}}
41 {{/if}}
42
43 <script language="javascript">
44 {literal}
45 SUGAR.util.doWhen(function(){
46     return $("#contentTable").length == 0;
47 }, SUGAR.themes.actionMenu);
48 {/literal}
49 </script>
50
51
52 <table cellpadding="0" cellspacing="0" border="0" width="100%" id="">
53 <tr>
54 <td class="buttons" align="left" NOWRAP width="20%">
55 <div class="actionsContainer">
56 {{if !isset($form.buttons)}}
57     {{sugar_button module="$module" id="EDIT" view="$view" form_id="formDetailView" appendTo="detail_header_buttons"}}
58     {{sugar_button module="$module" id="DUPLICATE" view="EditView" form_id="formDetailView" appendTo="detail_header_buttons"}}
59     {{sugar_button module="$module" id="DELETE" view="$view" form_id="formDetailView" appendTo="detail_header_buttons"}}
60 {{else}}
61     {{counter assign="num_buttons" start=0 print=false}}
62     {{foreach from=$form.buttons key=val item=button}}
63         {{if !is_array($button) && in_array($button, $built_in_buttons)}}
64         {{counter print=false}}
65         {{sugar_button module="$module" id="$button" view="EditView" form_id="formDetailView" appendTo="detail_header_buttons"}}
66         {{/if}}
67     {{/foreach}}
68     {{if count($form.buttons) > $num_buttons}}
69         {{foreach from=$form.buttons key=val item=button}}
70             {{if is_array($button) && $button.customCode}}
71                 {{sugar_button module="$module" id="$button" view="EditView" form_id="formDetailView" appendTo="detail_header_buttons"}}
72             {{/if}}
73         {{/foreach}}
74     {{/if}}
75     {{if empty($form.hideAudit) || !$form.hideAudit}}
76         {{sugar_button module="$module" id="Audit" view="EditView" form_id="formDetailView" appendTo="detail_header_buttons"}}
77     {{/if}}
78 {{/if}}
79
80 <form action="index.php" method="post" name="DetailView" id="formDetailView">
81     <input type="hidden" name="module" value="{$module}">
82     <input type="hidden" name="record" value="{$fields.id.value}">
83     <input type="hidden" name="return_action">
84     <input type="hidden" name="return_module">
85     <input type="hidden" name="return_id">
86     <input type="hidden" name="module_tab">
87     <input type="hidden" name="isDuplicate" value="false">
88     <input type="hidden" name="offset" value="{$offset}">
89     <input type="hidden" name="action" value="EditView">
90     <input type="hidden" name="sugar_body_only">
91 {{if isset($form.hidden)}}
92 {{foreach from=$form.hidden item=field}}
93 {{$field}}
94 {{/foreach}}
95 {{/if}}
96 </form>
97 {{sugar_action_menu id="detail_header_action_menu" buttons=$detail_header_buttons class="fancymenu" }}
98
99 </div>
100
101 </td>
102
103
104 <td align="right" width="80%">{$ADMIN_EDIT}
105         {{if $panelCount == 0}}
106             {{* Render tag for VCR control if SHOW_VCR_CONTROL is true *}}
107                 {{if $SHOW_VCR_CONTROL}}
108                         {$PAGINATION}
109                 {{/if}}
110                 {{counter name="panelCount" print=false}}
111         {{/if}}
112 </td>
113 {{* Add $form.links if they are defined *}}
114 {{if !empty($form) && isset($form.links)}}
115         <td align="right" width="10%">&nbsp;</td>
116         <td align="right" width="100%" NOWRAP>
117         {{foreach from=$form.links item=link}}
118             {{$link}}&nbsp;
119         {{/foreach}}
120         </td>
121 {{/if}}
122 </tr>
123 </table>