]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Calendar/tpls/settings.tpl
Release 6.5.0
[Github/sugarcrm.git] / modules / Calendar / tpls / settings.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
39 <script type="text/javascript">
40 {literal}
41 function toggleDisplayTimeslots() {
42         if (document.getElementById('display_timeslots').checked) {
43                 $(".time_range_options_row").css('display', '');
44         } else {
45                 $(".time_range_options_row").css('display', 'none');
46         }
47 }
48
49 $(function() {
50         toggleDisplayTimeslots();
51 });
52
53 {/literal}
54 </script>
55
56 <div id="settings_dialog" style="width: 450px; display: none;">
57         <div class="hd">{$MOD.LBL_SETTINGS_TITLE}</div>
58         <div class="bd">
59         <form name="settings" id="form_settings" method="POST" action="index.php?module=Calendar&action=SaveSettings">
60                 <input type="hidden" name="view" value="{$view}">
61                 <input type="hidden" name="day" value="{$day}">
62                 <input type="hidden" name="month" value="{$month}">
63                 <input type="hidden" name="year" value="{$year}">
64                 
65                 <table class='edit view tabForm'>
66                                 <tr>
67                                         <td scope="row" valign="top" width="55%">
68                                                 {$MOD.LBL_SETTINGS_DISPLAY_TIMESLOTS}
69                                         </td>
70                                         <td width="45%">        
71                                                 <input type="hidden" name="display_timeslots" value="">
72                                                 <input type="checkbox" id="display_timeslots" name="display_timeslots" {if $display_timeslots}checked{/if} value="1" tabindex="102" onchange="toggleDisplayTimeslots();">
73                                         </td>
74                                 </tr>
75                                 <tr class="time_range_options_row">
76                                         <td scope="row" valign="top">
77                                                 {$MOD.LBL_SETTINGS_TIME_STARTS}
78                                         </td>
79                                         <td>
80                                                 <div id="d_start_time_section">
81                                                         <select size="1" id="day_start_hours" name="day_start_hours" tabindex="102">
82                                                                 {$TIME_START_HOUR_OPTIONS}
83                                                         </select>&nbsp;:
84                                                         
85                                                         <select size="1" id="day_start_minutes" name="day_start_minutes"  tabindex="102">
86                                                                 {$TIME_START_MINUTES_OPTIONS}
87                                                         </select>
88                                                                 &nbsp;
89                                                         {$TIME_START_MERIDIEM}
90                                                 </div>
91                                         </td>
92                                 </tr>
93                                 <tr class="time_range_options_row">
94                                         <td scope="row" valign="top">
95                                                 {$MOD.LBL_SETTINGS_TIME_ENDS}
96                                         </td>
97                                         <td>
98                                                 <div id="d_end_time_section">
99                                                         <select size="1" id="day_end_hours" name="day_end_hours" tabindex="102">
100                                                                 {$TIME_END_HOUR_OPTIONS}
101                                                         </select>&nbsp;:
102                                                         
103                                                         <select size="1" id="day_end_minutes" name="day_end_minutes"  tabindex="102">
104                                                                 {$TIME_END_MINUTES_OPTIONS}
105                                                         </select>
106                                                                 &nbsp;
107                                                         {$TIME_END_MERIDIEM}
108                                                 </div>
109                                         </td>
110                                 </tr>
111                                 <tr>
112                                         <td scope="row" valign="top">
113                                                 {$MOD.LBL_SETTINGS_CALLS_SHOW}
114                                         </td>
115                                         <td>    
116                                                 <select size="1" name="show_calls" tabindex="102">
117                                                         <option value='' {if !$show_calls}selected{/if}>{$MOD.LBL_NO}</option>
118                                                         <option value='true' {if $show_calls}selected{/if}>{$MOD.LBL_YES}</option>                                                              
119                                                 </select>
120                                         </td>
121                                 </tr>
122                                 <tr>
123                                         <td scope="row" valign="top">
124                                                 {$MOD.LBL_SETTINGS_TASKS_SHOW}
125                                         </td>
126                                         <td>    
127                                                 <select size="1" name="show_tasks" tabindex="102">
128                                                         <option value='' {if !$show_tasks}selected{/if}>{$MOD.LBL_NO}</option>
129                                                         <option value='true' {if $show_tasks}selected{/if}>{$MOD.LBL_YES}</option>                                                              
130                                                 </select>
131                                         </td>
132                                 </tr>
133                 </table>
134         </form>
135         
136         
137         <div style="text-align: right;">
138                 <button id="btn-save-settings" class="button" type="button">{$MOD.LBL_APPLY_BUTTON}</button>&nbsp;
139                 <button id="btn-cancel-settings" class="button" type="button">{$MOD.LBL_CANCEL_BUTTON}</button>&nbsp;
140         </div>
141         </div>
142 </div>