Merge pull request #583 from yashodha/CRM-12463
[civicrm-core.git] / templates / CRM / Mailing / Page / Tab.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 4.3 |
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2013 |
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}Created By{/ts}</th>
33 <th class='crm-mailing-contact-date'>{ts}Date{/ts}</th>
34 <th class='crm-mailing-contact-links nosort'>&nbsp;</th>
35 </tr>
36 </thead>
37 </table>
38 </div>
39 {literal}
40 <script type="text/javascript">
41 var oTable;
42
43 cj(function ( ) {
44 buildMailingContact( );
45 });
46
47 function buildMailingContact() {
48
49 var columns = '';
50 var sourceUrl = {/literal}'{crmURL p="civicrm/ajax/contactmailing" h=0 q="contact_id=$contactId"}'{literal};
51
52 var ZeroRecordText = {/literal}'{ts escape="js"}No mailings found{/ts}.'{literal};
53
54 oTable = cj('#contact-mailing-selector').dataTable({
55 "bFilter" : false,
56 "bAutoWidth" : false,
57 "aaSorting" : [],
58 "aoColumns" : [
59 {sClass:'crm-mailing-contact-subject'},
60 {sClass:'crm-mailing-contact_created'},
61 {sClass:'crm-mailing-contact-date'},
62 {sClass:'crm-mailing-contact-links', bSortable:false}
63 ],
64 "bProcessing": true,
65 "sPaginationType": "full_numbers",
66 "sDom" : '<"crm-datatable-pager-top"lfp>rt<"crm-datatable-pager-bottom"ip>',
67 "bServerSide": true,
68 "bJQueryUI": true,
69 "sAjaxSource": sourceUrl,
70 "iDisplayLength": 25,
71 "oLanguage": {
72 "sZeroRecords": ZeroRecordText,
73 "sProcessing": {/literal}"{ts escape='js'}Processing...{/ts}"{literal},
74 "sLengthMenu": {/literal}"{ts escape='js'}Show _MENU_ entries{/ts}"{literal},
75 "sInfo": {/literal}"{ts escape='js'}Showing _START_ to _END_ of _TOTAL_ entries{/ts}"{literal},
76 "sInfoEmpty": {/literal}"{ts escape='js'}Showing 0 to 0 of 0 entries{/ts}"{literal},
77 "sInfoFiltered": {/literal}"{ts escape='js'}(filtered from _MAX_ total entries){/ts}"{literal},
78 "sSearch": {/literal}"{ts escape='js'}Search:{/ts}"{literal},
79 "oPaginate": {
80 "sFirst": {/literal}"{ts escape='js'}First{/ts}"{literal},
81 "sPrevious": {/literal}"{ts escape='js'}Previous{/ts}"{literal},
82 "sNext": {/literal}"{ts escape='js'}Next{/ts}"{literal},
83 "sLast": {/literal}"{ts escape='js'}Last{/ts}"{literal}
84 }
85 }
86 });
87 }
88
89 function setSelectorClass( ) {
90 cj('#contact-mailing-selector' + ' td:last-child').each( function( ) {
91 cj(this).parent().addClass(cj(this).text() );
92 });
93 }
94 </script>
95 {/literal}