commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-new / civicrm / templates / CRM / Contact / Form / Edit / Email.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 4.6 |
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2015 |
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 {* This file provides the plugin for the email block *}
27 {* @var $form Contains the array for the form elements and other form associated information assigned to the template by the controller*}
28 {* @var $blockId Contains the current email block id in evaluation, and assigned in the CRM/Contact/Form/Location.php file *}
29
30 {if !$addBlock}
31 <tr>
32 <td>{ts}Email{/ts}
33 &nbsp;&nbsp;<a id='addEmail' href="#" title={ts}Add{/ts} onClick="buildAdditionalBlocks( 'Email', '{$className}');return false;">{ts}add{/ts}</a>
34 </td>
35 {if $className eq 'CRM_Contact_Form_Contact'}
36 <td>{ts}On Hold?{/ts} {help id="id-onhold" file="CRM/Contact/Form/Contact.hlp"}</td>
37 <td>{ts}Bulk Mailings?{/ts} {help id="id-bulkmail" file="CRM/Contact/Form/Contact.hlp"}</td>
38 <td id="Email-Primary" class="hiddenElement">{ts}Primary?{/ts}</td>
39 {/if}
40 </tr>
41 {/if}
42
43 <tr id="Email_Block_{$blockId}">
44 <td>{$form.email.$blockId.email.html|crmAddClass:email}&nbsp;{$form.email.$blockId.location_type_id.html}
45 <div class="clear"></div>
46 {if $className eq 'CRM_Contact_Form_Contact'}
47 <div class="email-signature crm-collapsible collapsed">
48 <div class="collapsible-title">
49 {ts}Signature{/ts}
50 </div>
51 <div id="signatureBlock{$blockId}">
52 {$form.email.$blockId.signature_html.label}<br />{$form.email.$blockId.signature_html.html}<br />
53 {$form.email.$blockId.signature_text.label}<br />{$form.email.$blockId.signature_text.html}
54 </div>
55 </div>
56
57 {/if}
58 </td>
59 <td align="center">{$form.email.$blockId.on_hold.html}</td>
60 {if $multipleBulk}
61 <td align="center" id="Email-Bulkmail-html">{$form.email.$blockId.is_bulkmail.html}</td>
62 {else}
63 <td align="center" id="Email-Bulkmail-html">{$form.email.$blockId.is_bulkmail.1.html}</td>
64 {/if}
65 <td align="center" id="Email-Primary-html" {if $blockId eq 1}class="hiddenElement"{/if}>{$form.email.$blockId.is_primary.1.html}</td>
66 {if $blockId gt 1}
67 <td><a href="#" title="{ts}Delete Email Block{/ts}" onClick="removeBlock( 'Email', '{$blockId}' ); return false;">{ts}delete{/ts}</a></td>
68 {/if}
69 </tr>