Ian province abbreviation patch - issue 724
[civicrm-core.git] / CRM / Contact / Form / Inline / CommunicationPreferences.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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
31 * @copyright CiviCRM LLC (c) 2004-2015
32 */
33
34 /**
35 * Form helper class for communication preferences inline edit section.
36 */
37 class CRM_Contact_Form_Inline_CommunicationPreferences extends CRM_Contact_Form_Inline {
38
39 /**
40 * Build the form object elements for communication preferences.
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 /**
49 * Set defaults for the form.
50 *
51 * @return array
52 */
53 public function setDefaultValues() {
54 $defaults = parent::setDefaultValues();
55
56 if (!empty($defaults['preferred_language'])) {
57 $languages = CRM_Contact_BAO_Contact::buildOptions('preferred_language');
58 $defaults['preferred_language'] = CRM_Utils_Array::key($defaults['preferred_language'], $languages);
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
67 if (empty($defaults['communication_style_id'])) {
68 $defaults['communication_style_id'] = array_pop(CRM_Core_OptionGroup::values('communication_style', TRUE, NULL, NULL, 'AND is_default = 1'));
69 }
70
71 foreach (CRM_Contact_BAO_Contact::$_greetingTypes as $greeting) {
72 $name = "{$greeting}_display";
73 $this->assign($name, CRM_Utils_Array::value($name, $defaults));
74 }
75 return $defaults;
76 }
77
78 /**
79 * Process the form.
80 */
81 public function postProcess() {
82 $params = $this->exportValues();
83
84 // Process / save communication preferences
85
86 // this is a chekbox, so mark false if we dont get a POST value
87 $params['is_opt_out'] = CRM_Utils_Array::value('is_opt_out', $params, FALSE);
88 $params['contact_type'] = $this->_contactType;
89 $params['contact_id'] = $this->_contactId;
90
91 if (!empty($this->_contactSubType)) {
92 $params['contact_sub_type'] = $this->_contactSubType;
93 }
94
95 CRM_Contact_BAO_Contact::create($params);
96
97 $this->response();
98 }
99
100 }