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