Merge pull request #4842 from eileenmcnaughton/CRM-15746-master
[civicrm-core.git] / CRM / Member / Form.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 * Base class for offline membership / membership type / membership renewal and membership status forms
38 *
39 */
cc984198 40class CRM_Member_Form extends CRM_Contribute_Form_AbstractEditPayment {
6a488035
TO
41
42 /**
43 * The id of the object being edited / created
44 *
45 * @var int
46 */
cc984198 47 public $_id;
6a488035 48
a6513ad5
EM
49 /**
50 * Membership Type ID
51 * @var
52 */
53 protected $_memType;
54
55 /**
56 * Array of from email ids
57 * @var array
58 */
59 protected $_fromEmails = array();
60
00be9182 61 public function preProcess() {
a6513ad5
EM
62 $this->_action = CRM_Utils_Request::retrieve('action', 'String',$this, FALSE, 'add');
63 $this->_context = CRM_Utils_Request::retrieve('context', 'String', $this, FALSE, 'membership');
64 $this->_id = CRM_Utils_Request::retrieve('id', 'Positive', $this);
65 $this->_contactID = CRM_Utils_Request::retrieve('cid', 'Positive', $this);
66 $this->_mode = CRM_Utils_Request::retrieve('mode', 'String', $this);
67
68 $this->assign('context', $this->_context);
69 $this->assign('membershipMode', $this->_mode);
70 $this->assign('contactID', $this->_contactID);
fb3082b2 71
a6513ad5
EM
72 if ($this->_mode) {
73 $this->assignPaymentRelatedVariables();
74 }
75
76 if ($this->_id) {
77 $this->_memType = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_Membership', $this->_id, 'membership_type_id');
78 $this->_membershipIDs[] = $this->_id;
79 }
80 $this->_fromEmails = CRM_Core_BAO_Email::getFromEmail();
6a488035
TO
81 }
82
83 /**
c490a46a 84 * Set default values for the form. MobileProvider that in edit/view mode
6a488035
TO
85 * the default values are retrieved from the database
86 *
6a488035 87 *
bb3a214a 88 * @return array defaults
6a488035 89 */
00be9182 90 public function setDefaultValues() {
6a488035 91 $defaults = array();
a6513ad5
EM
92 if (isset($this->_id)) {
93 $params = array('id' => $this->_id);
94 CRM_Member_BAO_Membership::retrieve($params, $defaults);
95 }
6a488035 96
6a488035
TO
97 if (isset($defaults['minimum_fee'])) {
98 $defaults['minimum_fee'] = CRM_Utils_Money::format($defaults['minimum_fee'], NULL, '%a');
99 }
100
101 if (isset($defaults['status'])) {
102 $this->assign('membershipStatus', $defaults['status']);
103 }
104
105 if ($this->_action & CRM_Core_Action::ADD) {
106 $defaults['is_active'] = 1;
107 }
108
109 if (isset($defaults['member_of_contact_id']) &&
110 $defaults['member_of_contact_id']
111 ) {
112 $defaults['member_org'] = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact',
113 $defaults['member_of_contact_id'], 'display_name'
114 );
115 }
116 return $defaults;
117 }
118
119 /**
c490a46a 120 * Build the form object
6a488035 121 *
355ba699 122 * @return void
6a488035
TO
123 */
124 public function buildQuickForm() {
a6513ad5
EM
125 if ($this->_mode) {
126 $this->add('select', 'payment_processor_id',
127 ts('Payment Processor'),
128 $this->_processors, TRUE,
129 array('onChange' => "buildAutoRenew( null, this.value );")
130 );
131 CRM_Core_Payment_Form::buildPaymentForm($this, $this->_paymentProcessor, TRUE);
132 }
6a488035
TO
133 if ($this->_action & CRM_Core_Action::RENEW) {
134 $this->addButtons(array(
135 array(
136 'type' => 'upload',
137 'name' => ts('Renew'),
138 'isDefault' => TRUE
139 ),
140 array(
141 'type' => 'cancel',
142 'name' => ts('Cancel')
143 )
144 )
145 );
146 }
147 elseif ($this->_action & CRM_Core_Action::DELETE) {
148 $this->addButtons(array(
149 array(
150 'type' => 'next',
151 'name' => ts('Delete'),
152 'isDefault' => TRUE
153 ),
154 array(
155 'type' => 'cancel',
156 'name' => ts('Cancel')
157 )
158 )
159 );
160 }
161 else {
162 $this->addButtons(array(
163 array(
164 'type' => 'upload',
165 'name' => ts('Save'),
166 'isDefault' => TRUE
167 ),
168 array(
169 'type' => 'upload',
170 'name' => ts('Save and New'),
171 'subName' => 'new'
172 ),
173 array(
174 'type' => 'cancel',
175 'name' => ts('Cancel')
176 )
177 )
178 );
179 }
180 }
181
fb3082b2 182 /**
100fef9d 183 * Extract values from the contact create boxes on the form and assign appropriately to
6a488035
TO
184 *
185 * - $this->_contributorEmail,
186 * - $this->_memberEmail &
fb3082b2 187 * - $this->_contributionName
6a488035
TO
188 * - $this->_memberName
189 * - $this->_contactID (effectively memberContactId but changing might have spin-off effects)
190 * - $this->_contributorContactId - id of the contributor
191 * - $this->_receiptContactId
192 *
193 * If the member & contributor are the same then the values will be the same. But if different people paid
194 * then they weill differ
195 *
196 * @param $formValues array values from form. The important values we are looking for are
4c7aa1f7
CW
197 * - contact_id
198 * - soft_credit_contact_id
6a488035 199 */
00be9182 200 public function storeContactFields($formValues){
6a488035 201 // in a 'standalone form' (contact id not in the url) the contact will be in the form values
4c7aa1f7
CW
202 if (!empty($formValues['contact_id'])) {
203 $this->_contactID = $formValues['contact_id'];
6a488035
TO
204 }
205
206 list($this->_memberDisplayName,
207 $this->_memberEmail
208 ) = CRM_Contact_BAO_Contact_Location::getEmailDetails($this->_contactID);
209
210 //CRM-10375 Where the payer differs to the member the payer should get the email.
211 // here we store details in order to do that
4c7aa1f7
CW
212 if (!empty($formValues['soft_credit_contact_id'])) {
213 $this->_receiptContactId = $this->_contributorContactID = $formValues['soft_credit_contact_id'];
6a488035
TO
214 list( $this->_contributorDisplayName,
215 $this->_contributorEmail ) = CRM_Contact_BAO_Contact_Location::getEmailDetails( $this->_contributorContactID );
216 }
217 else {
218 $this->_receiptContactId = $this->_contributorContactID = $this->_contactID;
219 $this->_contributorDisplayName = $this->_memberDisplayName;
220 $this->_contributorEmail = $this->_memberEmail;
221 }
222 }
223}