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