CRM-14383 - Update cj closures
[civicrm-core.git] / templates / CRM / Mailing / 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-mailing-schedule-form-block">
27 {include file="CRM/common/WizardHeader.tpl"}
28 <div id="help">
29 {ts}You can schedule this mailing 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-mailing-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-mailing-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 CiviMail to start sending this mailing.{/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_email-accordion collapsed">
55 <div class="crm-accordion-header">
56 {ts}Preview Mailing{/ts}
57 </div><!-- /.crm-accordion-header -->
58 <div class="crm-accordion-body">
59 <table class="form-layout">
60 <tr class="crm-mailing-test-form-block-subject"><td class="label">{ts}Subject:{/ts}</td><td>{$preview.subject}</td></tr>
61 {if $preview.attachment}
62 <tr class="crm-mailing-test-form-block-attachment"><td class="label">{ts}Attachment(s):{/ts}</td><td>{$preview.attachment}</td></tr>
63 {/if}
64 {if $preview.viewURL}
65 <tr><td class="label">{if $preview.type eq 'html'}{ts}Mailing HTML:{/ts}{else}{ts}Mailing 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}Mailing Text:{/ts}</a></iframe></td></tr>
66 {/if}
67 </table>
68 </div><!-- /.crm-accordion-body -->
69 </div><!-- /.crm-accordion-wrapper -->
70 {/if}
71
72 {* include jscript to warn if unsaved form field changes *}
73 {include file="CRM/common/formNavigate.tpl"}
74
75 </div>
76
77 <script type="text/javascript">
78 {if $preview}
79 {literal}
80 CRM.$(function($) {
81 cj().crmAccordions();
82 });
83 {/literal}
84 {/if}
85
86 {literal}
87 CRM.$(function($) {
88 cj('#start_date_display').change( function( ) {
89 if ( cj(this).val( ) ) {
90 cj('#now').prop('checked', false );
91 }
92 });
93 cj('#now').change( function( ) {
94 if ( cj('#now').prop('checked', true ) ) {
95 cj('#start_date_display').val( '' );
96 cj('#start_date').val( '' );
97 cj('#start_date_time').val( '' );
98 }
99 });
100 });
101 {/literal}
102 </script>