CRM-14383 - Update cj closures
[civicrm-core.git] / templates / CRM / Mailing / Page / Tab.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
27 <div class="crm-mailing-selector">
28 <table id="contact-mailing-selector">
29 <thead>
30 <tr>
31 <th class='crm-mailing-contact-subject'>{ts}Subject{/ts}</th>
32 <th class='crm-mailing-contact_created'>{ts}Added By{/ts}</th>
33 <th class='crm-contact-activity_contact nosort'>{ts}Recipients{/ts}</th>
34 <th class='crm-mailing-contact-date'>{ts}Date{/ts}</th>
35 <th class='crm-mailing_openstats'>{ts}Opens/ Clicks{/ts}</th>
36 <th class='crm-mailing-contact-links nosort'>&nbsp;</th>
37 </tr>
38 </thead>
39 </table>
40 </div>
41 {literal}
42 <script type="text/javascript">
43 CRM.$(function($) {
44 var oTable;
45
46 buildMailingContact();
47
48 function buildMailingContact() {
49 var sourceUrl = {/literal}'{crmURL p="civicrm/ajax/contactmailing" h=0 q="contact_id=$contactId"}'{literal};
50
51 var ZeroRecordText = {/literal}'{ts escape="js"}No mailings found{/ts}.'{literal};
52
53 oTable = $('#contact-mailing-selector').dataTable({
54 "bFilter": false,
55 "bAutoWidth": false,
56 "aaSorting": [],
57 "aoColumns": [
58 {sClass: 'crm-mailing-contact-subject'},
59 {sClass: 'crm-mailing-contact_created'},
60 {sClass: 'crm-contact-activity_contact', bSortable:false},
61 {sClass: 'crm-mailing-contact-date'},
62 {sClass: 'crm-mailing_openstats', bSortable:false},
63 {sClass: 'crm-mailing-contact-links', bSortable: false}
64 ],
65 "bProcessing": true,
66 "sPaginationType": "full_numbers",
67 "sDom": '<"crm-datatable-pager-top"lfp>rt<"crm-datatable-pager-bottom"ip>',
68 "bServerSide": true,
69 "bJQueryUI": true,
70 "sAjaxSource": sourceUrl,
71 "iDisplayLength": 25,
72 "oLanguage": {
73 "sZeroRecords": ZeroRecordText,
74 "sProcessing": {/literal}"{ts escape='js'}Processing...{/ts}"{literal},
75 "sLengthMenu": {/literal}"{ts escape='js'}Show _MENU_ entries{/ts}"{literal},
76 "sInfo": {/literal}"{ts escape='js'}Showing _START_ to _END_ of _TOTAL_ entries{/ts}"{literal},
77 "sInfoEmpty": {/literal}"{ts escape='js'}Showing 0 to 0 of 0 entries{/ts}"{literal},
78 "sInfoFiltered": {/literal}"{ts escape='js'}(filtered from _MAX_ total entries){/ts}"{literal},
79 "sSearch": {/literal}"{ts escape='js'}Search:{/ts}"{literal},
80 "oPaginate": {
81 "sFirst": {/literal}"{ts escape='js'}First{/ts}"{literal},
82 "sPrevious": {/literal}"{ts escape='js'}Previous{/ts}"{literal},
83 "sNext": {/literal}"{ts escape='js'}Next{/ts}"{literal},
84 "sLast": {/literal}"{ts escape='js'}Last{/ts}"{literal}
85 }
86 }
87 });
88 }
89 });
90 </script>
91 {/literal}