]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Calendar/tpls/header.tpl
Release 6.4.0
[Github/sugarcrm.git] / modules / Calendar / tpls / 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
39 {if $controls}
40
41 <div style='width: 100%; margin-top: 12px;'></div>
42
43 <div style='float:left; width: 50%;'>
44 {foreach name=tabs from=$tabs key=k item=tab}
45         <input type="button" class="button" {if $view == $tab} selected {/if} id="{$tabs_params[$tab].id}" title="{$tabs_params[$tab].title}" value="{$tabs_params[$tab].title}" onclick="{$tabs_params[$tab].link}">
46 {/foreach}
47 </div>
48
49 <div style="float:left; text-align: right; width: 50%; font-size: 12px;">
50         {if $view != 'year'}
51         <span class="dateTime">
52                                         <img border="0" src="{$cal_img}" alt="Enter Date" id="goto_date_trigger" align="absmiddle">                                     
53                                         <input type="hidden" id="goto_date" name="goto_date" value="{$current_date}">           
54                                         <script type="text/javascript">
55                                         Calendar.setup ({literal}{{/literal}
56                                                 inputField : "goto_date",
57                                                 ifFormat : "%m/%d/%Y",
58                                                 daFormat : "%m/%d/%Y",
59                                                 button : "goto_date_trigger",
60                                                 singleClick : true,
61                                                 dateStr : "{$current_date}",
62                                                 step : 1,
63                                                 onUpdate: goto_date_call,
64                                                 startWeekday: {$start_weekday},
65                                                 weekNumbers:false
66                                         {literal}}{/literal});  
67                                         {literal}       
68                                         YAHOO.util.Event.onDOMReady(function(){
69                                                 YAHOO.util.Event.addListener("goto_date","change",goto_date_call);
70                                         });
71                                         function goto_date_call(){
72                                                 CAL.goto_date_call();
73                                         }
74                                         {/literal}
75                                         </script>
76         </span>
77         {/if}
78         <input type="button" class="button" id="cal_settings" onclick="CAL.toggle_settings()" value="{$MOD.LBL_SETTINGS}">
79 </div>
80
81 <div style='clear: both;'></div>
82
83 {/if}
84
85
86 <div class="{if $controls}monthHeader{/if}">
87         <div style='float: left; width: 20%;'>{$previous}</div>
88         <div style='float: left; width: 60%; text-align: center;'><h3>{$date_info}</h3></div>
89         <div style='float: right;'>{$next}</div>
90         <br style='clear:both;'>
91 </div>