CRM-14408 - get rid of unnecessary calls to crmAccordions
[civicrm-core.git] / templates / CRM / SMS / Form / Schedule.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 4.5 |
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2014 |
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 id="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 <table class="form-layout">
34 <tbody>
35 <tr class="crm-sms-schedule-form-block-now">
36 <td class="label">{$form.now.label}</td>
37 <td>{$form.now.html}</td>
38 </tr>
39 <tr>
40 <td class="label">{ts}OR{/ts}</td>
41 <td>&nbsp;</td>
42 </tr>
43 <tr class="crm-sms-schedule-form-block-start_date">
44 <td class="label">{$form.start_date.label}</td>
45 <td>{include file="CRM/common/jcalendar.tpl" elementName=start_date}
46 <div class="description">{ts}Set a date and time when you want CiviSMS to start sending this Mass SMS.{/ts}</div>
47 </td>
48 </tr>
49 </tbody>
50 </table>
51 <div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl"}</div>
52
53 {if $preview}
54 <div class="crm-accordion-wrapper crm-plain_text_sms-accordion collapsed">
55 <div class="crm-accordion-header">
56 {ts}Preview SMS{/ts}
57 </div><!-- /.crm-accordion-header -->
58 <div class="crm-accordion-body">
59 <table class="form-layout">
60
61 {if $preview.viewURL}
62 <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>
63 {/if}
64 </table>
65 </div><!-- /.crm-accordion-body -->
66 </div><!-- /.crm-accordion-wrapper -->
67 {/if}
68
69 {* include jscript to warn if unsaved form field changes *}
70 {include file="CRM/common/formNavigate.tpl"}
71
72 </div>
73
74 <script type="text/javascript">
75 {if $preview}
76 {/if}
77
78 {literal}
79 CRM.$(function($) {
80 cj('#start_date_display').change( function( ) {
81 if ( cj(this).val( ) ) {
82 cj('#now').prop('checked', false );
83 }
84 });
85 cj('#now').change( function( ) {
86 if ( cj('#now').prop('checked', true ) ) {
87 cj('#start_date_display').val( '' );
88 cj('#start_date').val( '' );
89 cj('#start_date_time').val( '' );
90 }
91 });
92 });
93 {/literal}
94 </script>