Merge pull request #12364 from JMAConsulting/dev-core-210
[civicrm-core.git] / CRM / Contact / Form / Inline / CommunicationPreferences.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
8c9251b3 6 | Copyright CiviCRM LLC (c) 2004-2018 |
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
8c9251b3 31 * @copyright CiviCRM LLC (c) 2004-2018
6a488035
TO
32 */
33
34/**
5a409b50 35 * Form helper class for communication preferences inline edit section.
6a488035
TO
36 */
37class CRM_Contact_Form_Inline_CommunicationPreferences extends CRM_Contact_Form_Inline {
38
39 /**
fe482240 40 * Build the form object elements for communication preferences.
6a488035
TO
41 */
42 public function buildQuickForm() {
43 parent::buildQuickForm();
44 CRM_Contact_Form_Edit_CommunicationPreferences::buildQuickForm($this);
45 $this->addFormRule(array('CRM_Contact_Form_Edit_CommunicationPreferences', 'formRule'), $this);
46 }
47
48 /**
fe482240 49 * Set defaults for the form.
6a488035
TO
50 *
51 * @return array
6a488035
TO
52 */
53 public function setDefaultValues() {
54 $defaults = parent::setDefaultValues();
55
56 if (!empty($defaults['preferred_language'])) {
41a03191 57 $languages = CRM_Contact_BAO_Contact::buildOptions('preferred_language');
58 $defaults['preferred_language'] = CRM_Utils_Array::key($defaults['preferred_language'], $languages);
6a488035
TO
59 }
60
61 // CRM-7119: set preferred_language to default if unset
62 if (empty($defaults['preferred_language'])) {
63 $config = CRM_Core_Config::singleton();
64 $defaults['preferred_language'] = $config->lcMessages;
65 }
66
33997bc3 67 // CRM-19135: where CRM_Core_BAO_Contact::getValues() set label as a default value instead of reserved 'value',
68 // the code is to ensure we always set default to value instead of label
69 if (!empty($defaults['preferred_mail_format'])) {
70 $defaults['preferred_mail_format'] = array_search($defaults['preferred_mail_format'], CRM_Core_SelectValues::pmf());
71 }
72
aa62b355
OB
73 if (empty($defaults['communication_style_id'])) {
74 $defaults['communication_style_id'] = array_pop(CRM_Core_OptionGroup::values('communication_style', TRUE, NULL, NULL, 'AND is_default = 1'));
75 }
76
6a488035
TO
77 foreach (CRM_Contact_BAO_Contact::$_greetingTypes as $greeting) {
78 $name = "{$greeting}_display";
79 $this->assign($name, CRM_Utils_Array::value($name, $defaults));
80 }
81 return $defaults;
82 }
83
84 /**
fe482240 85 * Process the form.
6a488035
TO
86 */
87 public function postProcess() {
88 $params = $this->exportValues();
89
90 // Process / save communication preferences
91
92 // this is a chekbox, so mark false if we dont get a POST value
93 $params['is_opt_out'] = CRM_Utils_Array::value('is_opt_out', $params, FALSE);
94 $params['contact_type'] = $this->_contactType;
95 $params['contact_id'] = $this->_contactId;
96
97 if (!empty($this->_contactSubType)) {
98 $params['contact_sub_type'] = $this->_contactSubType;
99 }
100
37f7ae88 101 if (!isset($params['preferred_communication_method'])) {
102 $params['preferred_communication_method'] = 'null';
103 }
6a488035
TO
104 CRM_Contact_BAO_Contact::create($params);
105
106 $this->response();
107 }
96025800 108
6a488035 109}