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