Merge remote-tracking branch 'upstream/4.4' into 4.4-master-2014-04-04-00-48-43
[civicrm-core.git] / templates / CRM / Mailing / Page / Tab.tpl
CommitLineData
2ede60ec
DL
1{*
2 +--------------------------------------------------------------------+
819d0d41 3 | CiviCRM version 4.5 |
2ede60ec 4 +--------------------------------------------------------------------+
819d0d41 5 | Copyright CiviCRM LLC (c) 2004-2014 |
2ede60ec
DL
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>
a582d9f2 32 <th class='crm-mailing-contact_created'>{ts}Added By{/ts}</th>
6b62f1bb 33 <th class='crm-contact-activity_contact nosort'>{ts}Recipients{/ts}</th>
2ede60ec 34 <th class='crm-mailing-contact-date'>{ts}Date{/ts}</th>
50f5a393 35 <th class='crm-mailing_openstats'>{ts}Opens/ Clicks{/ts}</th>
2ede60ec 36 <th class='crm-mailing-contact-links nosort'>&nbsp;</th>
2ede60ec
DL
37 </tr>
38 </thead>
39 </table>
40</div>
41{literal}
42<script type="text/javascript">
3cc60a06 43 CRM.$(function($) {
0991dfb0 44 var oTable;
2ede60ec 45
0991dfb0
KJ
46 buildMailingContact();
47
48 function buildMailingContact() {
0991dfb0 49 var sourceUrl = {/literal}'{crmURL p="civicrm/ajax/contactmailing" h=0 q="contact_id=$contactId"}'{literal};
2ede60ec 50
0991dfb0 51 var ZeroRecordText = {/literal}'{ts escape="js"}No mailings found{/ts}.'{literal};
2ede60ec 52
0991dfb0
KJ
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'},
5a99d240 60 {sClass: 'crm-contact-activity_contact', bSortable:false},
0991dfb0 61 {sClass: 'crm-mailing-contact-date'},
50f5a393 62 {sClass: 'crm-mailing_openstats', bSortable:false},
0991dfb0
KJ
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 }
0991dfb0
KJ
86 }
87 });
88 }
2ede60ec 89 });
2ede60ec
DL
90</script>
91{/literal}