Merge pull request #13927 from mlutfy/cart-php72
[civicrm-core.git] / CRM / Friend / Form.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2019 |
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-2019
32 * $Id$
33 *
34 */
35
36 /**
37 * This class generates form components for Tell A Friend Form For End User
38 *
39 */
40 class CRM_Friend_Form extends CRM_Core_Form {
41
42 /**
43 * Constants for number of friend contacts.
44 */
45 const NUM_OPTION = 3;
46
47 /**
48 * The id of the entity that we are processing.
49 *
50 * @var int
51 */
52 protected $_entityId;
53
54 /**
55 * Tell a friend id in db.
56 *
57 * @var int
58 */
59 public $_friendId;
60
61 /**
62 * The table name of the entity that we are processing.
63 *
64 * @var string
65 */
66 protected $_entityTable;
67
68 protected $_campaignId;
69
70 /**
71 * The contact ID.
72 *
73 * @var int
74 */
75 protected $_contactID;
76
77 public function preProcess() {
78 $this->_action = CRM_Utils_Request::retrieve('action', 'String', $this);
79 $this->_entityId = CRM_Utils_Request::retrieve('eid', 'Positive', $this, TRUE);
80
81 $pcomponent = CRM_Utils_Request::retrieve('pcomponent', 'String', $this, TRUE);
82
83 if (in_array($pcomponent, array(
84 'contribute',
85 'event',
86 ))) {
87 $values = array();
88 $params = array('id' => $this->_entityId);
89 CRM_Core_DAO::commonRetrieve('CRM_Contribute_DAO_ContributionPage',
90 $params, $values, array('title', 'campaign_id', 'is_share')
91 );
92 $this->_title = CRM_Utils_Array::value('title', $values);
93 $this->_campaignId = CRM_Utils_Array::value('campaign_id', $values);
94 $this->_entityTable = 'civicrm_contribution_page';
95 if ($pcomponent == 'event') {
96 $this->_entityTable = 'civicrm_event';
97 $isShare = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Event', $this->_entityId, 'is_share');
98 $this->_title = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Event', $this->_entityId, 'title');
99 }
100 else {
101 $isShare = CRM_Utils_Array::value('is_share', $values);
102 }
103 // Tell Form.tpl whether to include SocialNetwork.tpl for social media sharing
104 $this->assign('isShare', $isShare);
105 }
106 elseif ($pcomponent == 'pcp') {
107 $this->_pcpBlockId = CRM_Utils_Request::retrieve('blockId', 'Positive', $this, TRUE);
108
109 $values = array();
110 $params = array('id' => $this->_pcpBlockId);
111 CRM_Core_DAO::commonRetrieve('CRM_PCP_DAO_PCPBlock',
112 $params, $values, array('is_tellfriend_enabled', 'tellfriend_limit')
113 );
114
115 if (empty($values['is_tellfriend_enabled'])) {
116 CRM_Core_Error::fatal(ts('Tell Friend is disable for this Personal Campaign Page'));
117 }
118
119 $this->_mailLimit = $values['tellfriend_limit'];
120 $this->_entityTable = 'civicrm_pcp';
121
122 $sql = '
123 SELECT pcp.title,
124 contrib.campaign_id
125 FROM civicrm_pcp pcp
126 INNER JOIN civicrm_contribution_page contrib ON ( pcp.page_id = contrib.id AND pcp.page_type = "contribute" )
127 WHERE pcp.id = %1';
128 $pcp = CRM_Core_DAO::executeQuery($sql, array(1 => array($this->_entityId, 'Positive')));
129 while ($pcp->fetch()) {
130 $this->_title = $pcp->title;
131 $this->_campaignId = $pcp->campaign_id;
132 $pcp->free();
133 }
134
135 $this->assign('pcpTitle', $this->_title);
136 }
137 else {
138 CRM_Core_Error::fatal(ts('page argument missing or invalid'));
139 }
140 $this->assign('context', $pcomponent);
141
142 $session = CRM_Core_Session::singleton();
143 $this->_contactID = $session->get('userID');
144 if (!$this->_contactID) {
145 $this->_contactID = $session->get('transaction.userID');
146 }
147
148 if (!$this->_contactID) {
149 CRM_Core_Error::fatal(ts('Could not get the contact ID'));
150 }
151
152 // we do not want to display recently viewed items, so turn off
153 $this->assign('displayRecent', FALSE);
154 }
155
156 /**
157 * Set default values for the form.
158 *
159 *
160 * @return void
161 */
162 public function setDefaultValues() {
163 $defaults = array();
164
165 $defaults['entity_id'] = $this->_entityId;
166 $defaults['entity_table'] = $this->_entityTable;
167
168 CRM_Friend_BAO_Friend::getValues($defaults);
169 CRM_Utils_System::setTitle(CRM_Utils_Array::value('title', $defaults));
170
171 $this->assign('title', CRM_Utils_Array::value('title', $defaults));
172 $this->assign('intro', CRM_Utils_Array::value('intro', $defaults));
173 $this->assign('message', CRM_Utils_Array::value('suggested_message', $defaults));
174 $this->assign('entityID', $this->_entityId);
175
176 list($fromName, $fromEmail) = CRM_Contact_BAO_Contact::getContactDetails($this->_contactID);
177
178 $defaults['from_name'] = $fromName;
179 $defaults['from_email'] = $fromEmail;
180
181 return $defaults;
182 }
183
184 /**
185 * Build the form object.
186 *
187 * @return void
188 */
189 public function buildQuickForm() {
190 $this->applyFilter('__ALL__', 'trim');
191 // Details of User
192 $name = &$this->add('text',
193 'from_name',
194 ts('From'),
195 CRM_Core_DAO::getAttribute('CRM_Contact_DAO_Contact', 'first_name')
196 );
197 $name->freeze();
198
199 $email = &$this->add('text',
200 'from_email',
201 ts('Your Email'),
202 CRM_Core_DAO::getAttribute('CRM_Core_DAO_Email', 'email'),
203 TRUE
204 );
205 $email->freeze();
206
207 $this->add('wysiwyg', 'suggested_message', ts('Your Message'), CRM_Core_DAO::getAttribute('CRM_Friend_DAO_Friend', 'suggested_message'));
208 $friend = array();
209 $mailLimit = self::NUM_OPTION;
210 if ($this->_entityTable == 'civicrm_pcp') {
211 $mailLimit = $this->_mailLimit;
212 }
213 $this->assign('mailLimit', $mailLimit + 1);
214 for ($i = 1; $i <= $mailLimit; $i++) {
215 $this->add('text', "friend[$i][first_name]", ts("Friend's First Name"));
216 $this->add('text', "friend[$i][last_name]", ts("Friend's Last Name"));
217 $this->add('text', "friend[$i][email]", ts("Friend's Email"));
218 $this->addRule("friend[$i][email]", ts('The format of this email address is not valid.'), 'email');
219 }
220
221 $this->addButtons(array(
222 array(
223 'type' => 'submit',
224 'name' => ts('Send Your Message'),
225 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
226 'isDefault' => TRUE,
227 ),
228 array(
229 'type' => 'cancel',
230 'name' => ts('Cancel'),
231 ),
232 )
233 );
234
235 $this->addFormRule(array('CRM_Friend_Form', 'formRule'));
236 }
237
238 /**
239 * Validation.
240 *
241 * @param array $fields
242 *
243 * @return bool|array
244 * mixed true or array of errors
245 */
246 public static function formRule($fields) {
247
248 $errors = array();
249
250 $valid = FALSE;
251 foreach ($fields['friend'] as $key => $val) {
252 if (trim($val['first_name']) || trim($val['last_name']) || trim($val['email'])) {
253 $valid = TRUE;
254
255 if (!trim($val['first_name'])) {
256 $errors["friend[{$key}][first_name]"] = ts('Please enter your friend\'s first name.');
257 }
258
259 if (!trim($val['last_name'])) {
260 $errors["friend[{$key}][last_name]"] = ts('Please enter your friend\'s last name.');
261 }
262
263 if (!trim($val['email'])) {
264 $errors["friend[{$key}][email]"] = ts('Please enter your friend\'s email address.');
265 }
266 }
267 }
268
269 if (!$valid) {
270 $errors['friend[1][first_name]'] = ts("Please enter at least one friend's information, or click Cancel if you don't want to send emails at this time.");
271 }
272
273 return empty($errors) ? TRUE : $errors;
274 }
275
276 /**
277 * Process the form submission.
278 *
279 *
280 * @return void
281 */
282 public function postProcess() {
283 // get the submitted form values.
284 $formValues = $this->controller->exportValues($this->_name);
285
286 $formValues['entity_id'] = $this->_entityId;
287 $formValues['entity_table'] = $this->_entityTable;
288 $formValues['source_contact_id'] = $this->_contactID;
289 $formValues['is_test'] = $this->_action ? 1 : 0;
290 $formValues['title'] = $this->_title;
291 $formValues['campaign_id'] = $this->_campaignId;
292
293 CRM_Friend_BAO_Friend::create($formValues);
294
295 $this->assign('status', 'thankyou');
296 $defaults = array();
297
298 $defaults['entity_id'] = $this->_entityId;
299 $defaults['entity_table'] = $this->_entityTable;
300
301 CRM_Friend_BAO_Friend::getValues($defaults);
302 if ($this->_entityTable == 'civicrm_pcp') {
303 $defaults['thankyou_text'] = $defaults['thankyou_title'] = ts('Thank you for your support');
304 $defaults['thankyou_text'] = ts('Thanks for supporting this campaign by spreading the word to your friends.');
305 }
306 elseif ($this->_entityTable == 'civicrm_contribution_page') {
307 // If this is tell a friend after contributing, give donor link to create their own fundraising page
308 if ($linkText = CRM_PCP_BAO_PCP::getPcpBlockStatus($defaults['entity_id'], $defaults['entity_table'])) {
309
310 $linkTextUrl = CRM_Utils_System::url('civicrm/contribute/campaign',
311 "action=add&reset=1&pageId={$defaults['entity_id']}&component=contribute",
312 FALSE, NULL, TRUE,
313 TRUE
314 );
315 $this->assign('linkTextUrl', $linkTextUrl);
316 $this->assign('linkText', $linkText);
317 }
318 }
319 elseif ($this->_entityTable == 'civicrm_event') {
320 // If this is tell a friend after registering for an event, give donor link to create their own fundraising page
321 require_once 'CRM/PCP/BAO/PCP.php';
322 if ($linkText = CRM_PCP_BAO_PCP::getPcpBlockStatus($defaults['entity_id'], $defaults['entity_table'])) {
323 $linkTextUrl = CRM_Utils_System::url('civicrm/contribute/campaign',
324 "action=add&reset=1&pageId={$defaults['entity_id']}&component=event",
325 FALSE, NULL, TRUE,
326 TRUE);
327 $this->assign('linkTextUrl', $linkTextUrl);
328 $this->assign('linkText', $linkText);
329 }
330 }
331
332 CRM_Utils_System::setTitle($defaults['thankyou_title']);
333 $this->assign('thankYouText', $defaults['thankyou_text']);
334 }
335
336 }