Merge pull request #12650 from JMAConsulting/dev-core-321
[civicrm-core.git] / templates / CRM / SMS / Form / Schedule.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 5 |
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2018 |
6 +--------------------------------------------------------------------+
7 | This file is a part of CiviCRM. |
8 | |
9 | CiviCRM is free software; you can copy, modify, and distribute it |
10 | under the terms of the GNU Affero General Public License |
11 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
12 | |
13 | CiviCRM is distributed in the hope that it will be useful, but |
14 | WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
16 | See the GNU Affero General Public License for more details. |
17 | |
18 | You should have received a copy of the GNU Affero General Public |
19 | License and the CiviCRM Licensing Exception along |
20 | with this program; if not, contact CiviCRM LLC |
21 | at info[AT]civicrm[DOT]org. If you have questions about the |
22 | GNU Affero General Public License or the licensing of CiviCRM, |
23 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
24 +--------------------------------------------------------------------+
25 *}
26 <div class="crm-block crm-form-block crm-sms-schedule-form-block">
27 {include file="CRM/common/WizardHeader.tpl"}
28 <div class="help">
29 {ts}You can schedule this Mass SMS to be sent starting at a specific date and time, OR you can request that it be sent as soon as possible by checking &quot;Send Immediately&quot;.{/ts} {help id="sending"}
30 </div>
31 {include file="CRM/Mailing/Form/Count.tpl"}
32
33 <div>
34 <div>
35 <div>
36 {$form.send_option.html}
37 <span class="start_date_elements">{$form.start_date.html}</span>
38 </div>
39
40 </div>
41 <div class="description">{ts}Set a date and time when you want CiviSMS to start sending this Mass SMS.{/ts}</div>
42 </div>
43 <div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl"}</div>
44
45 {if $preview}
46 <div class="crm-accordion-wrapper crm-plain_text_sms-accordion collapsed">
47 <div class="crm-accordion-header">
48 {ts}Preview SMS{/ts}
49 </div><!-- /.crm-accordion-header -->
50 <div class="crm-accordion-body">
51 <table class="form-layout">
52
53 {if $preview.viewURL}
54 <tr><td class="label">{if $preview.type eq 'html'}{ts}SMS HTML:{/ts}{else}{ts}SMS Text:{/ts}{/if}</td><td><iframe height="300" src="{$preview.viewURL}" width="80%"><a href="{$preview.viewURL}" onclick="window.open(this.href); return false;">{ts}SMS Text:{/ts}</a></iframe></td></tr>
55 {/if}
56 </table>
57 </div><!-- /.crm-accordion-body -->
58 </div><!-- /.crm-accordion-wrapper -->
59 {/if}
60
61 </div>
62
63 <script type="text/javascript">
64 {literal}
65 CRM.$(function($) {
66
67 // If someone changes the schedule date, auto-select the 'send at' option
68 $(".start_date_elements input").change(function() {
69 $('#send_immediate').prop('checked', false);
70 $('#send_later').prop('checked', true);
71 });
72
73 // Clear scheduled date/time when send immediately is selected
74 $("#send_immediate").change(function() {
75 if ($(this).prop('checked')) {
76 $(".start_date_elements input").val('');
77 $(".start_date_elements input").siblings("a.crm-clear-link").css('visibility', 'hidden');
78 }
79 });
80
81 });
82 {/literal}
83 </script>