Merge branch 'rcsheets-docstring-cleanup'
[civicrm-core.git] / templates / CRM / Contact / Page / Inline / Email.tpl
CommitLineData
6a488035
TO
1{*
2 +--------------------------------------------------------------------+
819d0d41 3 | CiviCRM version 4.5 |
6a488035 4 +--------------------------------------------------------------------+
819d0d41 5 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
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{* template for building email block*}
27<div id="crm-email-content" {if $permission EQ 'edit'} class="crm-inline-edit" data-edit-params='{ldelim}"cid": "{$contactId}", "class_name": "CRM_Contact_Form_Inline_Email"{rdelim}' data-dependent-fields='["#crm-contact-actions-wrapper"]'{/if}>
28 <div class="crm-clear crm-inline-block-content" {if $permission EQ 'edit'}title="{ts}Add or edit email{/ts}"{/if}>
29 {if $permission EQ 'edit'}
30 <div class="crm-edit-help">
31 <span class="batch-edit"></span>{if empty($email)}{ts}Add email{/ts}{else}{ts}Add or edit email{/ts}{/if}
32 </div>
33 {/if}
34 {if empty($email)}
35 <div class="crm-summary-row">
36 <div class="crm-label">
37 {ts}Email{/ts}
38 {if $privacy.do_not_email}<span class="icon privacy-flag do-not-email" title="{ts}Privacy flag: Do Not Email{/ts}"></span>{/if}
39 </div>
40 <div class="crm-content"></div>
41 </div>
42 {/if}
43 {foreach from=$email key="blockId" item=item}
44 {if $item.email}
45 <div class="crm-summary-row {if $item.is_primary eq 1}primary{/if}">
46 <div class="crm-label">
47 {$item.location_type} {ts}Email{/ts}
48 {if $privacy.do_not_email}<span class="icon privacy-flag do-not-email" title="{ts}Privacy flag: Do Not Email{/ts}"></span>{elseif $item.on_hold}<span class="icon privacy-flag email-hold" title="{ts}Email on hold - generally due to bouncing.{/ts}"></span>{/if}
49 </div>
50 <div class="crm-content crm-contact_email {if $item.is_primary eq 1}primary{/if}">
51 <a href="mailto:{$item.email}">{$item.email}</a>{if $item.on_hold == 2}&nbsp;({ts}On Hold - Opt Out{/ts}){elseif $item.on_hold}&nbsp;({ts}On Hold{/ts}){/if}{if $item.is_bulkmail}&nbsp;({ts}Bulk{/ts}){/if}
52 {if $item.signature_text OR $item.signature_html}
53 <span class="signature-link description">
54 <a href="#" title="{ts}Signature{/ts}" onClick="showHideSignature( '{$blockId}' ); return false;">{ts}(signature){/ts}</a>
55 </span>
56 {/if}
57 <div id="Email_Block_{$blockId}_signature" class="hiddenElement">
58 <strong>{ts}Signature HTML{/ts}</strong><br />{$item.signature_html}<br /><br />
59 <strong>{ts}Signature Text{/ts}</strong><br />{$item.signature_text|nl2br}</div>
60 </div>
61 </div>
62 {/if}
63 {/foreach}
64 </div>
65</div>
66
67{literal}
68<script type="text/javascript">
69
70function showHideSignature( blockId ) {
71 cj("#Email_Block_" + blockId + "_signature").show( );
72
73 cj("#Email_Block_" + blockId + "_signature").dialog({
74 title: "Signature",
75 modal: true,
6a488035
TO
76 width: 900,
77 height: 500,
6a488035
TO
78 beforeclose: function(event, ui) {
79 cj(this).dialog("destroy");
80 },
14022148 81 buttons: {
6a488035
TO
82 "Done": function() {
83 cj(this).dialog("destroy");
84 }
85 }
86 });
87}
88</script>
89{/literal}