0
0
mirror of https://github.com/salesagility/SuiteCRM.git synced 2024-11-22 07:52:36 +00:00
salesagility_SuiteCRM/modules/Calendar/tpls/repeat.tpl
Horus68 34eb8562c6 Copyright notice update - Hotfix
Copyright notice update for hotfix branch
Changes: 
- Year 
- Double spaces
- Brand fix for SalesAgility Ltd. (was Salesagility Ltd)

Created from latest hotfix branch.
2018-08-01 20:14:25 +01:00

171 lines
7.5 KiB
Smarty
Executable File

{*
/**
*
* SugarCRM Community Edition is a customer relationship management program developed by
* SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
*
* SuiteCRM is an extension to SugarCRM Community Edition developed by SalesAgility Ltd.
* Copyright (C) 2011 - 2018 SalesAgility Ltd.
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License version 3 as published by the
* Free Software Foundation with the addition of the following permission added
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
* IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
* details.
*
* You should have received a copy of the GNU Affero General Public License along with
* this program; if not, see http://www.gnu.org/licenses or write to the Free
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301 USA.
*
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
* SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
*
* The interactive user interfaces in modified source and object code versions
* of this program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU Affero General Public License version 3.
*
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "Powered by
* SugarCRM" logo and "Supercharged by SuiteCRM" logo. If the display of the logos is not
* reasonably feasible for technical reasons, the Appropriate Legal Notices must
* display the words "Powered by SugarCRM" and "Supercharged by SuiteCRM".
*/
*}
<div id="edit_all_recurrences_block" style="display: none;">
<button type="button" id="btn-edit-all-recurrences" onclick="CAL.edit_all_recurrences();"> {$MOD.LBL_EDIT_ALL_RECURRENCES} </button>
<button type="button" id="btn-remove-all-recurrences" onclick="CAL.remove_all_recurrences();"> {$MOD.LBL_REMOVE_ALL_RECURRENCES} </button>
</div>
<div id="cal-repeat-block" style="display: none;">
<form name="CalendarRepeatForm" id="CalendarRepeatForm" onsubmit="return false;">
<input type="hidden" name="repeat_parent_id">
<table class="edit view" width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="12.5%" valign="top" scope="row">{$MOD.LBL_REPEAT_TYPE}:</td>
<td width="37.5%" valign="top">
<select name="repeat_type" onchange="toggle_repeat_type();">{html_options options=$APPLIST.repeat_type_dom}</select>
</td>
</tr>
<tr id="repeat_interval_row" style="display: none;">
<td width="12.5%" valign="top" scope="row">{$MOD.LBL_REPEAT_INTERVAL}:</td>
<td width="37.5%" valign="top">
<select name="repeat_interval">{html_options options=$repeat_intervals selected="1"}</select> <span id="repeat-interval-text"></span>
</td>
</tr>
<tr id="repeat_end_row" style="display: none;">
<td width="12.5%" valign="top" scope="row">{$MOD.LBL_REPEAT_END}:</td>
<td width="37.5%" valign="top">
<div>
<input type="radio" name="repeat_end_type" value="number" id="repeat_count_radio" checked onclick="toggle_repeat_end();" style="position: relative; top: -5px;"> {$MOD.LBL_REPEAT_END_AFTER}
<input type="input" size="3" name="repeat_count" value="10"> {$MOD.LBL_REPEAT_OCCURRENCES}
</div>
<div>
<input type="radio" name="repeat_end_type" id="repeat_until_radio" value="date" onclick="toggle_repeat_end();" style="position: relative; top: -5px;"> {$MOD.LBL_REPEAT_END_BY}
<input type="input" size="11" maxlength="10" id="repeat_until_input" name="repeat_until" value="" disabled>
<span class="suitepicon suitepicon-module-calendar" id="repeat_until_trigger"></span>
<script type="text/javascript">
Calendar.setup ({literal}{{/literal}
inputField : "repeat_until_input",
ifFormat : "{$CALENDAR_FORMAT}",
daFormat : "{$CALENDAR_FORMAT}",
button : "repeat_until_trigger",
singleClick : true,
dateStr : "",
step : 1,
startWeekday: {$CALENDAR_FDOW|default:'0'},
weekNumbers:false
{literal}}{/literal});
</script>
</div>
</td>
</tr>
<tr id="repeat_dow_row" style="display: none;">
<td width="12.5%" valign="top" scope="row">{$MOD.LBL_REPEAT_DOW}:</td>
<td width="37.5%" valign="top">
{foreach name=dow from=$dow key=i item=d}
{$d.label} <input type="checkbox" id="repeat_dow_{$d.index}" name="repeat_dow[]" style="margin-right: 10px;">
{/foreach}
</td>
</tr>
</table>
</form>
</div>
<script type="text/javascript">
{literal}
function toggle_repeat_type(){
if(typeof validate != "undefined" && typeof validate['CalendarRepeatForm'] != "undefined")
validate['CalendarRepeatForm'] = undefined;
if(document.forms['CalendarRepeatForm'].repeat_type.value == ""){
document.getElementById("repeat_interval_row").style.display = "none";
document.getElementById("repeat_end_row").style.display = "none";
}else{
document.getElementById("repeat_interval_row").style.display = "";
document.getElementById("repeat_end_row").style.display = "";
toggle_repeat_end();
}
var repeat_dow_row = document.getElementById("repeat_dow_row");
if(document.forms['CalendarRepeatForm'].repeat_type.value == "Weekly"){
repeat_dow_row.style.display = "";
}else{
repeat_dow_row.style.display = "none";
}
var intervalTextElm = document.getElementById('repeat-interval-text');
if (intervalTextElm && typeof SUGAR.language.languages.app_list_strings['repeat_intervals'] != 'undefined') {
intervalTextElm.innerHTML = SUGAR.language.languages.app_list_strings['repeat_intervals'][document.forms['CalendarRepeatForm'].repeat_type.value];
}
}
function toggle_repeat_end(){
if(document.getElementById("repeat_count_radio").checked){
document.forms['CalendarRepeatForm'].repeat_until.setAttribute("disabled","disabled");
document.forms['CalendarRepeatForm'].repeat_count.removeAttribute("disabled");
document.getElementById("repeat_until_trigger").style.display = "none";
if(typeof validate != "undefined" && typeof validate['CalendarRepeatForm'] != "undefined"){
removeFromValidate('CalendarRepeatForm', 'repeat_until');
}
addToValidateMoreThan('CalendarRepeatForm', 'repeat_count', 'int', true, "{/literal}{$MOD.LBL_REPEAT_COUNT}{literal}", 1);
}else{
document.forms['CalendarRepeatForm'].repeat_count.setAttribute("disabled","disabled");
document.forms['CalendarRepeatForm'].repeat_until.removeAttribute("disabled");
document.getElementById("repeat_until_trigger").style.display = "";
if(typeof validate != "undefined" && typeof validate['CalendarRepeatForm'] != "undefined"){
removeFromValidate('CalendarRepeatForm', 'repeat_count');
}
addToValidate('CalendarRepeatForm', 'repeat_until', 'date', true, "{/literal}{$MOD.LBL_REPEAT_UNTIL}{literal}");
}
// prevent an issue when a calendar date picker is hidden under a dialog
var editContainer = document.getElementById('cal-edit_c');
if (editContainer) {
var pickerContainer = document.getElementById('container_repeat_until_trigger_c');
if (pickerContainer) {
pickerContainer.style.zIndex = editContainer.style.zIndex + 1;
}
}
}
{/literal}
</script>