INFRA-132 comments to end with full stops
[civicrm-core.git] / CRM / Contact / Form / ProfileContact.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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-2014
32 * $Id$
33 *
34 */
35 class CRM_Contact_Form_ProfileContact {
36
37 protected $_mode;
38
39 /**
40 * Set variables up before form is built.
41 *
42 * @param CRM_Core_Form $form
43 *
44 * @return void
45 */
46 public static function preProcess(&$form) {
47 $session = CRM_Core_Session::singleton();
48 $contactID = $session->get('userID');
49
50 $ufJoinParams = array(
51 'module' => 'soft_credit',
52 'entity_table' => 'civicrm_contribution_page',
53 'entity_id' => $form->_id,
54 );
55 $profileId = CRM_Core_BAO_UFJoin::getUFGroupIds($ufJoinParams);
56 $form->_honoreeProfileId = $profileId[0];
57
58 if (!$form->_honoreeProfileId ||
59 !CRM_Core_DAO::getFieldValue('CRM_Core_DAO_UFGroup', $form->_honoreeProfileId, 'is_active')
60 ) {
61 CRM_Core_Error::fatal(ts('This contribution page has been configured for contribution on behalf of honoree and the selected honoree profile is either disabled or not found.'));
62 }
63
64 $profileContactType = CRM_Core_BAO_UFGroup::getContactType($form->_honoreeProfileId);
65 $requiredProfileFields = array(
66 'Individual' => array('first_name', 'last_name'),
67 'Organization' => array('organization_name', 'email'),
68 'Household' => array('household_name', 'email'),
69 );
70 $validProfile = CRM_Core_BAO_UFGroup::checkValidProfile($form->_honoreeProfileId, $requiredProfileFields[$profileContactType]);
71 if (!$validProfile) {
72 CRM_Core_Error::fatal(ts('This contribution page has been configured for contribution on behalf of honoree and the required fields of the selected honoree profile are disabled or doesn\'t exist.'));
73 }
74 }
75
76 /**
77 * Build form for honoree contact / on behalf of organization.
78 *
79 * @param CRM_Core_Form $form
80 *
81 */
82 public static function buildQuickForm(&$form) {
83 $ufGroup = new CRM_Core_DAO_UFGroup();
84 $ufGroup->id = $form->_honoreeProfileId;
85 if (!$ufGroup->find(TRUE)) {
86 CRM_Core_Error::fatal(ts('Chosen honoree profile for this contribution is disabled'));
87 }
88
89 $prefix = 'honor';
90 $honoreeProfileFields = CRM_Core_BAO_UFGroup::getFields($form->_honoreeProfileId, FALSE, NULL,
91 NULL, NULL,
92 FALSE, NULL,
93 TRUE, NULL,
94 CRM_Core_Permission::CREATE
95 );
96 $form->addElement('hidden', 'honoree_profile_id', $form->_honoreeProfileId);
97 $form->assign('honoreeProfileFields', $honoreeProfileFields);
98
99 // add the form elements
100 foreach ($honoreeProfileFields as $name => $field) {
101 // If soft credit type is not chosen then make omit requiredness from honoree profile fields
102 if (count($form->_submitValues) && empty($form->_submitValues['soft_credit_type_id']) && !empty($field['is_required'])) {
103 $field['is_required'] = FALSE;
104 }
105 CRM_Core_BAO_UFGroup::buildProfile($form, $field, CRM_Profile_Form::MODE_CREATE, NULL, FALSE, FALSE, NULL, $prefix);
106 }
107 }
108
109 /**
110 * @param $form
111 */
112 public static function postProcess($form) {
113 $params = $form->_params;
114 if (!empty($form->_honor_block_is_active) && !empty($params['soft_credit_type_id'])) {
115 $honorId = NULL;
116
117 //check if there is any duplicate contact
118 $profileContactType = CRM_Core_BAO_UFGroup::getContactType($params['honoree_profile_id']);
119 $dedupeParams = CRM_Dedupe_Finder::formatParams($params['honor'], $profileContactType);
120 $dedupeParams['check_permission'] = FALSE;
121 $ids = CRM_Dedupe_Finder::dupesByParams($dedupeParams, $profileContactType);
122 if (count($ids)) {
123 $honorId = CRM_Utils_Array::value(0, $ids);
124 }
125
126 $honorId = CRM_Contact_BAO_Contact::createProfileContact(
127 $params['honor'], CRM_Core_DAO::$_nullArray,
128 $honorId, NULL,
129 $params['honoree_profile_id']
130 );
131 $softParams = array();
132 $softParams['contribution_id'] = $form->_contributionID;
133 $softParams['contact_id'] = $honorId;
134 $softParams['soft_credit_type_id'] = $params['soft_credit_type_id'];
135 $contribution = new CRM_Contribute_DAO_Contribution();
136 $contribution->id = $form->_contributionID;
137 $contribution->find();
138 while ($contribution->fetch()) {
139 $softParams['currency'] = $contribution->currency;
140 $softParams['amount'] = $contribution->total_amount;
141 }
142 CRM_Contribute_BAO_ContributionSoft::add($softParams);
143
144 if (CRM_Utils_Array::value('is_email_receipt', $form->_values)) {
145 $form->_values['honor'] = array(
146 'soft_credit_type' => CRM_Utils_Array::value(
147 $params['soft_credit_type_id'],
148 CRM_Core_OptionGroup::values("soft_credit_type")
149 ),
150 'honor_id' => $honorId,
151 'honor_profile_id' => $params['honoree_profile_id'],
152 'honor_profile_values' => $params['honor'],
153 );
154 }
155 }
156 }
157
158 }