INFRA-132 - Civi - PHPStorm cleanup
[civicrm-core.git] / CRM / Contact / Form / Edit / Email.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 * @package CRM
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * form helper class for an Email object
38 */
39class CRM_Contact_Form_Edit_Email {
40
41 /**
c490a46a 42 * Build the form object elements for an email object
6a488035 43 *
77c5b619
TO
44 * @param CRM_Core_Form $form
45 * Reference to the form object.
46 * @param int $blockCount
47 * Block number to build.
48 * @param bool $blockEdit
49 * Is it block edit.
6a488035
TO
50 *
51 * @return void
6a488035
TO
52 * @static
53 */
00be9182 54 public static function buildQuickForm(&$form, $blockCount = NULL, $blockEdit = FALSE) {
6a488035
TO
55 // passing this via the session is AWFUL. we need to fix this
56 if (!$blockCount) {
57 $blockId = ($form->get('Email_Block_Count')) ? $form->get('Email_Block_Count') : 1;
58 }
59 else {
60 $blockId = $blockCount;
61 }
62
63 $form->applyFilter('__ALL__', 'trim');
64
65 //Email box
66 $form->addElement('text', "email[$blockId][email]", ts('Email'), CRM_Core_DAO::getAttribute('CRM_Core_DAO_Email', 'email'));
67 $form->addRule("email[$blockId][email]", ts('Email is not valid.'), 'email');
68 if (isset($form->_contactType) || $blockEdit) {
69 //Block type
30193ce3 70 $form->addSelect("email[$blockId][location_type_id]", array('entity' => 'email', 'class' => 'eight', 'placeholder' => NULL));
6a488035
TO
71
72 $multipleBulk = CRM_Core_BAO_Email::isMultipleBulkMail();
73
74 //On-hold select
75 if ($multipleBulk) {
6ea503d4
TO
76 $holdOptions = array(
77 0 => ts('- select -'),
6a488035
TO
78 1 => ts('On Hold Bounce'),
79 2 => ts('On Hold Opt Out'),
80 );
81 $form->addElement('select', "email[$blockId][on_hold]", '', $holdOptions);
82 }
83 else {
84 $form->addElement('advcheckbox', "email[$blockId][on_hold]", NULL);
85 }
86
87 //Bulkmail checkbox
88 $form->assign('multipleBulk', $multipleBulk);
89 if ($multipleBulk) {
90 $js = array('id' => "Email_" . $blockId . "_IsBulkmail");
91 $form->addElement('advcheckbox', "email[$blockId][is_bulkmail]", NULL, '', $js);
92 }
93 else {
94 $js = array('id' => "Email_" . $blockId . "_IsBulkmail");
95 if (!$blockEdit) {
96 $js['onClick'] = 'singleSelect( this.id );';
97 }
98 $form->addElement('radio', "email[$blockId][is_bulkmail]", '', '', '1', $js);
99 }
100
101 //is_Primary radio
102 $js = array('id' => "Email_" . $blockId . "_IsPrimary");
103 if (!$blockEdit) {
104 $js['onClick'] = 'singleSelect( this.id );';
105 }
106
107 $form->addElement('radio', "email[$blockId][is_primary]", '', '', '1', $js);
108
109 if (CRM_Utils_System::getClassName($form) == 'CRM_Contact_Form_Contact') {
110
111 $form->add('textarea', "email[$blockId][signature_text]", ts('Signature (Text)'),
112 array('rows' => 2, 'cols' => 40)
113 );
114
115 $form->addWysiwyg("email[$blockId][signature_html]", ts('Signature (HTML)'),
116 array('rows' => 2, 'cols' => 40)
117 );
118 }
119 }
120 }
121}