Merge pull request #4086 from monishdeb/CRM-15250
[civicrm-core.git] / CRM / Profile / Form.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
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
36 /**
37 * This class generates form components for custom data
38 *
39 * It delegates the work to lower level subclasses and integrates the changes
40 * back in. It also uses a lot of functionality with the CRM API's, so any change
41 * made here could potentially affect the API etc. Be careful, be aware, use unit tests.
42 *
43 */
44 class CRM_Profile_Form extends CRM_Core_Form {
45 CONST
46 MODE_REGISTER = 1,
47 MODE_SEARCH = 2,
48 MODE_CREATE = 4,
49 MODE_EDIT = 8;
50
51 protected $_mode;
52
53 protected $_skipPermission = FALSE;
54
55 /**
56 * The contact id that we are editing
57 *
58 * @var int
59 */
60 protected $_id;
61
62 /**
63 * The group id that we are editing
64 *
65 * @var int
66 */
67 protected $_gid;
68
69 /**
70 * @var array details of the UFGroup used on this page
71 */
72 protected $_ufGroup = array('name' => 'unknown');
73
74 /**
75 * The group id that we are passing in url
76 *
77 * @var int
78 */
79 public $_grid;
80
81 /**
82 * Name of button for saving matching contacts
83 * @var
84 */
85 protected $_duplicateButtonName;
86 /**
87 * The title of the category we are editing
88 *
89 * @var string
90 */
91 protected $_title;
92
93 /**
94 * the fields needed to build this form
95 *
96 * @var array
97 */
98 public $_fields;
99
100 /**
101 * to store contact details
102 *
103 * @var array
104 */
105 protected $_contact;
106
107 /**
108 * Do we allow updates of the contact
109 *
110 * @var int
111 */
112 public $_isUpdateDupe = 0;
113
114 public $_isAddCaptcha = FALSE;
115
116 protected $_isPermissionedChecksum = FALSE;
117
118 /**
119 * THe context from which we came from, allows us to go there if redirect not set
120 *
121 * @var string
122 */
123 protected $_context;
124
125 /**
126 * THe contact type for registration case
127 *
128 * @var string
129 */
130 protected $_ctype = NULL;
131
132 protected $_defaults = NULL;
133
134 /**
135 * Store profile ids if multiple profile ids are passed using comma separated.
136 * Currently lets implement this functionality only for dialog mode
137 */
138 protected $_profileIds = array();
139
140 /**
141 * Contact profile having activity fields?
142 *
143 * @var string
144 */
145 protected $_isContactActivityProfile = FALSE;
146
147 /**
148 * Activity Id connected to the profile
149 *
150 * @var string
151 */
152 protected $_activityId = NULL;
153
154
155 protected $_multiRecordFields = NULL;
156
157 protected $_recordId = NULL;
158
159 /**
160 * action for multi record profile (create/edit/delete)
161 *
162 * @var string
163 */
164 protected $_multiRecord = NULL;
165
166 protected $_multiRecordProfile = FALSE;
167
168 protected $_recordExists = TRUE;
169
170 protected $_customGroupTitle = NULL;
171
172 protected $_deleteButtonName = NULL;
173
174 protected $_customGroupId = NULL;
175
176 protected $_currentUserID = NULL;
177 protected $_session = NULL;
178
179 /**
180 * pre processing work done here.
181 *
182 * gets session variables for table name, id of entity in table, type of entity and stores them.
183 *
184 * @param
185 *
186 * @return void
187 *
188 * @access public
189 */
190 function preProcess() {
191 $this->_id = $this->get('id');
192 $this->_profileIds = $this->get('profileIds');
193 $this->_grid = CRM_Utils_Request::retrieve('grid', 'Integer', $this);
194 $this->_context = CRM_Utils_Request::retrieve('context', 'String', $this);
195
196 //unset from session when $_GET doesn't have it
197 //except when the form is submitted
198 if (empty($_POST)) {
199 if (!array_key_exists('multiRecord', $_GET)) {
200 $this->set('multiRecord', NULL);
201 }
202 if (!array_key_exists('recordId', $_GET)) {
203 $this->set('recordId', NULL);
204 }
205 }
206
207 $this->_session = CRM_Core_Session::singleton();
208 $this->_currentUserID = $this->_session->get('userID');
209
210 if ($this->_mode == self::MODE_EDIT) {
211 //specifies the action being done on a multi record field
212 $multiRecordAction = CRM_Utils_Request::retrieve('multiRecord', 'String', $this);
213 $this->_multiRecord = (!is_numeric($multiRecordAction)) ?
214 CRM_Core_Action::resolve($multiRecordAction) : $multiRecordAction;
215 if ($this->_multiRecord) {
216 $this->set('multiRecord', $this->_multiRecord);
217 }
218
219 if ($this->_multiRecord &&
220 !in_array($this->_multiRecord, array(CRM_Core_Action::UPDATE, CRM_Core_Action::ADD, CRM_Core_Action::DELETE))) {
221 CRM_Core_Error::fatal(ts('Proper action not specified for this custom value record profile'));
222 }
223 }
224 $this->_duplicateButtonName = $this->getButtonName('upload', 'duplicate');
225
226 $gids = explode(',', CRM_Utils_Request::retrieve('gid', 'String', CRM_Core_DAO::$_nullObject, FALSE, 0));
227
228 if ((count($gids) > 1) && !$this->_profileIds && empty($this->_profileIds)) {
229 if (!empty($gids)) {
230 foreach ($gids as $pfId) {
231 $this->_profileIds[] = CRM_Utils_Type::escape($pfId, 'Positive');
232 }
233 }
234
235 // check if we are rendering mixed profiles
236 if (CRM_Core_BAO_UFGroup::checkForMixProfiles($this->_profileIds)) {
237 CRM_Core_Error::fatal(ts('You cannot combine profiles of multiple types.'));
238 }
239
240 // for now consider 1'st profile as primary profile and validate it
241 // i.e check for profile type etc.
242 // FIX ME: validations for other than primary
243 $this->_gid = $this->_profileIds[0];
244 $this->set('gid', $this->_gid);
245 $this->set('profileIds', $this->_profileIds);
246 }
247
248 if (!$this->_gid) {
249 $this->_gid = CRM_Utils_Request::retrieve('gid', 'Positive', $this, FALSE, 0);
250 $this->set('gid', $this->_gid);
251 }
252
253 $this->_activityId = CRM_Utils_Request::retrieve('aid', 'Positive', $this, FALSE, 0, 'GET');
254 if (is_numeric($this->_activityId)) {
255 $latestRevisionId = CRM_Activity_BAO_Activity::getLatestActivityId($this->_activityId);
256 if ($latestRevisionId) {
257 $this->_activityId = $latestRevisionId;
258 }
259 }
260 $this->_isContactActivityProfile = CRM_Core_BAO_UFField::checkContactActivityProfileType($this->_gid);
261
262 //get values for ufGroupName, captch and dupe update.
263 if ($this->_gid) {
264 $dao = new CRM_Core_DAO_UFGroup();
265 $dao->id = $this->_gid;
266 if ($dao->find(TRUE)) {
267 $this->_isUpdateDupe = $dao->is_update_dupe;
268 $this->_isAddCaptcha = $dao->add_captcha;
269 $this->_ufGroup = (array) $dao;
270 }
271 $dao->free();
272
273 if (!CRM_Utils_Array::value('is_active', $this->_ufGroup)) {
274 CRM_Core_Error::fatal(ts('The requested profile (gid=%1) is inactive or does not exist.', array(
275 1 => $this->_gid,
276 )));
277 }
278 }
279 $this->assign('ufGroupName', $this->_ufGroup['name']);
280
281 $gids = empty($this->_profileIds) ? $this->_gid : $this->_profileIds;
282
283 // if we dont have a gid use the default, else just use that specific gid
284 if (($this->_mode == self::MODE_REGISTER || $this->_mode == self::MODE_CREATE) && !$this->_gid) {
285 $this->_ctype = CRM_Utils_Request::retrieve('ctype', 'String', $this, FALSE, 'Individual', 'REQUEST');
286 $this->_fields = CRM_Core_BAO_UFGroup::getRegistrationFields($this->_action, $this->_mode, $this->_ctype);
287 }
288 elseif ($this->_mode == self::MODE_SEARCH) {
289 $this->_fields = CRM_Core_BAO_UFGroup::getListingFields($this->_action,
290 CRM_Core_BAO_UFGroup::PUBLIC_VISIBILITY | CRM_Core_BAO_UFGroup::LISTINGS_VISIBILITY,
291 FALSE,
292 $gids,
293 TRUE, NULL,
294 $this->_skipPermission,
295 CRM_Core_Permission::SEARCH
296 );
297 }
298 else {
299 $this->_fields = CRM_Core_BAO_UFGroup::getFields($gids, FALSE, NULL,
300 NULL, NULL,
301 FALSE, NULL,
302 $this->_skipPermission,
303 NULL,
304 ($this->_action == CRM_Core_Action::ADD) ? CRM_Core_Permission::CREATE : CRM_Core_Permission::EDIT
305 );
306 $multiRecordFieldListing = FALSE;
307 //using selector for listing of multirecord fields
308 if ($this->_mode == self::MODE_EDIT && $this->_gid) {
309 CRM_Core_BAO_UFGroup::shiftMultiRecordFields($this->_fields, $this->_multiRecordFields);
310
311 if ($this->_multiRecord) {
312 if ($this->_multiRecord != CRM_Core_Action::ADD) {
313 $this->_recordId = CRM_Utils_Request::retrieve('recordId', 'Positive', $this);
314 } else {
315 $this->_recordId = NULL;
316 $this->set('recordId', NULL);
317 }
318 //record id is neccessary for _multiRecord view and update/edit action
319 if (!$this->_recordId
320 && ($this->_multiRecord == CRM_Core_Action::UPDATE || $this->_multiRecord == CRM_Core_Action::DELETE)) {
321 CRM_Core_Error::fatal(ts('The requested Profile (gid=%1) requires record id while performing this action',
322 array(1 => $this->_gid)
323 ));
324 } elseif (empty($this->_multiRecordFields)) {
325 CRM_Core_Error::fatal(ts('No Multi-Record Fields configured for this profile (gid=%1)',
326 array(1 => $this->_gid)
327 ));
328 }
329
330 $fieldId = CRM_Core_BAO_CustomField::getKeyID(key($this->_multiRecordFields));
331 $customGroupDetails = CRM_Core_BAO_CustomGroup::getGroupTitles(array($fieldId));
332 $this->_customGroupTitle = $customGroupDetails[$fieldId]['groupTitle'];
333 $this->_customGroupId = $customGroupDetails[$fieldId]['groupID'];
334
335 if ($this->_multiRecord == CRM_Core_Action::UPDATE || $this->_multiRecord == CRM_Core_Action::DELETE) {
336 //record exists check
337 foreach ($this->_multiRecordFields as $key => $field) {
338 $fieldIds[] = CRM_Core_BAO_CustomField::getKeyID($key);
339 }
340 $getValues = CRM_Core_BAO_CustomValueTable::getEntityValues($this->_id, NULL, $fieldIds, TRUE);
341
342 if (array_key_exists($this->_recordId, $getValues)) {
343 $this->_recordExists = TRUE;
344 } else {
345 $this->_recordExists = FALSE;
346 if ($this->_multiRecord & CRM_Core_Action::UPDATE) {
347 CRM_Core_Session::setStatus(ts('Note: The record %1 doesnot exists. Upon save a new record will be create', array(1 => $this->_recordId)), ts('Record doesnot exist'), 'alert');
348 }
349 }
350 }
351 if ($this->_multiRecord & CRM_Core_Action::ADD) {
352 $this->_maxRecordLimit = CRM_Core_BAO_CustomGroup::hasReachedMaxLimit($customGroupDetails[$fieldId]['groupID'], $this->_id);
353 if ($this->_maxRecordLimit) {
354 CRM_Core_Session::setStatus(ts('You cannot add a new record as maximum allowed limit is reached'), ts('Sorry'), 'error');
355 }
356 }
357
358 } elseif (!empty($this->_multiRecordFields)
359 && (!$this->_multiRecord || !in_array($this->_multiRecord, array(CRM_Core_Action::DELETE, CRM_Core_Action::UPDATE)) )) {
360 CRM_Core_Resources::singleton()->addScriptFile('civicrm', 'js/crm.livePage.js');
361 //multirecord listing page
362 $multiRecordFieldListing = TRUE;
363 $page = new CRM_Profile_Page_MultipleRecordFieldsListing();
364 $cs = $this->get('cs');
365 $page->set('pageCheckSum', $cs);
366 $page->set('contactId', $this->_id);
367 $page->set('profileId', $this->_gid);
368 $page->set('action', CRM_Core_Action::BROWSE);
369 $page->set('multiRecordFieldListing', $multiRecordFieldListing);
370 $page->run();
371 }
372 }
373 $this->assign('multiRecordFieldListing', $multiRecordFieldListing);
374
375 // is profile double-opt in?
376 if (!empty($this->_fields['group']) &&
377 CRM_Core_BAO_UFGroup::isProfileDoubleOptin()
378 ) {
379 $emailField = FALSE;
380 foreach ($this->_fields as $name => $values) {
381 if (substr($name, 0, 6) == 'email-') {
382 $emailField = TRUE;
383 }
384 }
385
386 if (!$emailField) {
387 $status = ts("Email field should be included in profile if you want to use Group(s) when Profile double-opt in process is enabled.");
388 $this->_session->setStatus($status);
389 }
390 }
391
392 //transferring all the multi-record custom fields in _fields
393 if ($this->_multiRecord && !empty($this->_multiRecordFields)) {
394 $this->_fields = $this->_multiRecordFields;
395 $this->_multiRecordProfile = TRUE;
396 } elseif ($this->_multiRecord && empty($this->_multiRecordFields)) {
397 CRM_Core_Session::setStatus(ts('This feature is not currently available.'), ts('Sorry'), 'error');
398 CRM_Utils_System::redirect(CRM_Utils_System::url('civicrm', 'reset=1'));
399 }
400 }
401
402 if (!is_array($this->_fields)) {
403 CRM_Core_Session::setStatus(ts('This feature is not currently available.'), ts('Sorry'), 'error');
404 CRM_Utils_System::redirect(CRM_Utils_System::url('civicrm', 'reset=1'));
405 }
406 }
407
408 /**
409 * This function sets the default values for the form. Note that in edit/view mode
410 * the default values are retrieved from the database
411 *
412 * @access public
413 *
414 * @return void
415 */
416 function setDefaultsValues() {
417 $this->_defaults = array();
418 if ($this->_multiRecordProfile && ($this->_multiRecord == CRM_Core_Action::DELETE)) {
419 return;
420 }
421
422 if ($this->_mode != self::MODE_SEARCH) {
423 // set default values for country / state to start with
424 CRM_Core_BAO_UFGroup::setRegisterDefaults($this->_fields, $this->_defaults);
425 }
426
427 if ($this->_id && !$this->_multiRecordProfile) {
428 if ($this->_isContactActivityProfile) {
429 $contactFields = $activityFields = array();
430 foreach ($this->_fields as $fieldName => $field) {
431 if (CRM_Utils_Array::value('field_type', $field) == 'Activity') {
432 $activityFields[$fieldName] = $field;
433 }
434 else {
435 $contactFields[$fieldName] = $field;
436 }
437 }
438
439 CRM_Core_BAO_UFGroup::setProfileDefaults($this->_id, $contactFields, $this->_defaults, TRUE);
440 if ($this->_activityId) {
441 CRM_Core_BAO_UFGroup::setComponentDefaults($activityFields, $this->_activityId, 'Activity', $this->_defaults, TRUE);
442 }
443 }
444 else {
445 CRM_Core_BAO_UFGroup::setProfileDefaults($this->_id, $this->_fields, $this->_defaults, TRUE);
446 }
447 }
448
449 //set custom field defaults
450 if ($this->_multiRecordProfile) {
451 foreach ($this->_multiRecordFields as $key => $field) {
452 $fieldIds[] = CRM_Core_BAO_CustomField::getKeyID($key);
453 }
454
455 $defaultValues = array( );
456 if ($this->_multiRecord && $this->_multiRecord == CRM_Core_Action::UPDATE) {
457 $defaultValues = CRM_Core_BAO_CustomValueTable::getEntityValues($this->_id, NULL, $fieldIds, TRUE);
458 if ($this->_recordExists == TRUE) {
459 $defaultValues = $defaultValues[$this->_recordId];
460 } else {
461 $defaultValues = NULL;
462 }
463 }
464
465 if (!empty($defaultValues)) {
466 foreach ($defaultValues as $key => $value) {
467 $name = "custom_{$key}";
468 $htmlType = $this->_multiRecordFields[$name]['html_type'];
469 if ($htmlType != 'File') {
470 if (isset($value)) {
471 CRM_Core_BAO_CustomField::setProfileDefaults($key,
472 $name,
473 $this->_defaults,
474 $this->_id,
475 $this->_mode,
476 $value
477 );
478 } else {
479 $this->_defaults[$name] = "";
480 }
481 }
482
483 if ($htmlType == 'File') {
484 $entityId = $this->_id;
485 if (CRM_Utils_Array::value('field_type', $field) == 'Activity' &&
486 $this->_activityId
487 ) {
488 $entityId = $this->_activityId;
489 }
490 $url = CRM_Core_BAO_CustomField::getFileURL($entityId, $key);
491
492 if ($url) {
493 $customFiles[$name]['displayURL'] = ts("Attached File") . ": {$url['file_url']}";
494
495 $deleteExtra = ts("Are you sure you want to delete attached file?");
496 $fileId = $url['file_id'];
497 $deleteURL = CRM_Utils_System::url('civicrm/file',
498 "reset=1&id={$fileId}&eid=$entityId&fid={$key}&action=delete"
499 );
500 $text = ts("Delete Attached File");
501 $customFiles[$field['name']]['deleteURL'] = "<a href=\"{$deleteURL}\" onclick = \"if (confirm( ' $deleteExtra ' )) this.href+='&amp;confirmed=1'; else return false;\">$text</a>";
502
503 // also delete the required rule that we've set on the form element
504 $this->removeFileRequiredRules($name);
505 }
506 }
507 }
508 }
509 }
510 else {
511 foreach ($this->_fields as $name => $field) {
512 if ($customFieldID = CRM_Core_BAO_CustomField::getKeyID($name)) {
513 $htmlType = $field['html_type'];
514 if ((!isset($this->_defaults[$name]) || $htmlType == 'File') &&
515 (CRM_Utils_Array::value('field_type', $field) != 'Activity')
516 ) {
517 CRM_Core_BAO_CustomField::setProfileDefaults($customFieldID,
518 $name,
519 $this->_defaults,
520 $this->_id,
521 $this->_mode
522 );
523 }
524
525 if ($htmlType == 'File') {
526 $entityId = $this->_id;
527 if (CRM_Utils_Array::value('field_type', $field) == 'Activity' && $this->_activityId) {
528 $entityId = $this->_activityId;
529 }
530 $url = CRM_Core_BAO_CustomField::getFileURL($entityId, $customFieldID);
531
532 if ($url) {
533 $customFiles[$field['name']]['displayURL'] = ts("Attached File") . ": {$url['file_url']}";
534
535 $deleteExtra = ts("Are you sure you want to delete attached file?");
536 $fileId = $url['file_id'];
537 $deleteURL = CRM_Utils_System::url('civicrm/file',
538 "reset=1&id={$fileId}&eid=$entityId&fid={$customFieldID}&action=delete"
539 );
540 $text = ts("Delete Attached File");
541 $customFiles[$field['name']]['deleteURL'] = "<a href=\"{$deleteURL}\" onclick = \"if (confirm( ' $deleteExtra ' )) this.href+='&amp;confirmed=1'; else return false;\">$text</a>";
542
543 // also delete the required rule that we've set on the form element
544 $this->removeFileRequiredRules($field['name']);
545 }
546 }
547 }
548 }
549 }
550 if (isset($customFiles)) {
551 $this->assign('customFiles', $customFiles);
552 }
553
554 if ($this->_multiRecordProfile) {
555 $this->setDefaults($this->_defaults);
556 return;
557 }
558
559 if (!empty($this->_defaults['image_URL'])) {
560 list($imageWidth, $imageHeight) = getimagesize(CRM_Utils_String::unstupifyUrl($this->_defaults['image_URL']));
561 list($imageThumbWidth, $imageThumbHeight) = CRM_Contact_BAO_Contact::getThumbSize($imageWidth, $imageHeight);
562 $this->assign("imageWidth", $imageWidth);
563 $this->assign("imageHeight", $imageHeight);
564 $this->assign("imageThumbWidth", $imageThumbWidth);
565 $this->assign("imageThumbHeight", $imageThumbHeight);
566 $this->assign("imageURL", $this->_defaults['image_URL']);
567 $this->removeFileRequiredRules('image_URL');
568 }
569
570 if (array_key_exists('contact_sub_type', $this->_defaults) &&
571 !empty($this->_defaults['contact_sub_type'])
572 ) {
573 $this->_defaults['contact_sub_type'] = explode(CRM_Core_DAO::VALUE_SEPARATOR,
574 trim($this->_defaults['contact_sub_type'], CRM_Core_DAO::VALUE_SEPARATOR)
575 );
576 }
577
578 $this->setDefaults($this->_defaults);
579 }
580
581 /**
582 * Function to actually build the form
583 *
584 * @return void
585 * @access public
586 */
587 public function buildQuickForm() {
588 $this->add('hidden', 'gid', $this->_gid);
589
590 switch ($this->_mode) {
591 case self::MODE_CREATE:
592 case self::MODE_EDIT:
593 case self::MODE_REGISTER:
594 CRM_Utils_Hook::buildProfile($this->_ufGroup['name']);
595 break;
596 case self::MODE_SEARCH:
597 CRM_Utils_Hook::searchProfile($this->_ufGroup['name']);
598 break;
599 default:
600 }
601
602 //lets have single status message, CRM-4363
603 $return = FALSE;
604 $statusMessage = NULL;
605 if (($this->_multiRecord & CRM_Core_Action::ADD) && $this->_maxRecordLimit) {
606 return;
607 }
608
609 if (($this->_multiRecord & CRM_Core_Action::DELETE)) {
610 if (!$this->_recordExists) {
611 CRM_Core_Session::setStatus(ts('The record %1 doesnot exists', array(1 => $this->_recordId)), ts('Record doesnot exists'), 'alert');
612 }
613 else {
614 $this->assign('deleteRecord', TRUE);
615 }
616 return;
617 }
618
619 CRM_Core_BAO_Address::checkContactSharedAddressFields($this->_fields, $this->_id);
620
621 // we should not allow component and mix profiles in search mode
622 if ($this->_mode != self::MODE_REGISTER) {
623 //check for mix profile fields (eg: individual + other contact type)
624 if (CRM_Core_BAO_UFField::checkProfileType($this->_gid)) {
625 if (($this->_mode & self::MODE_EDIT) && $this->_isContactActivityProfile) {
626 $errors = self::validateContactActivityProfile($this->_activityId, $this->_id, $this->_gid);
627 if (!empty($errors)) {
628 $statusMessage = array_pop($errors);
629 $return = TRUE;
630 }
631 }
632 else {
633 $statusMessage = ts('Profile search, view and edit are not supported for Profiles which include fields for more than one record type.');
634 $return = TRUE;
635 }
636 }
637
638 $profileType = CRM_Core_BAO_UFField::getProfileType($this->_gid);
639
640 if ($this->_id) {
641 $contactTypes = CRM_Contact_BAO_Contact::getContactTypes($this->_id);
642 $contactType = $contactTypes[0];
643
644 array_shift($contactTypes);
645 $contactSubtypes = $contactTypes;
646
647 $profileSubType = FALSE;
648 if (CRM_Contact_BAO_ContactType::isaSubType($profileType)) {
649 $profileSubType = $profileType;
650 $profileType = CRM_Contact_BAO_ContactType::getBasicType($profileType);
651 }
652
653 if (
654 ($profileType != 'Contact' && !$this->_isContactActivityProfile) &&
655 (($profileSubType && !empty($contactSubtypes) && (!in_array($profileSubType,$contactSubtypes))) ||
656 ($profileType != $contactType))
657 ) {
658 $return = TRUE;
659 if (!$statusMessage) {
660 $statusMessage =
661 ts("This profile is configured for contact type '%1'. It cannot be used to edit contacts of other types.",
662 array(1 => $profileSubType ? $profileSubType : $profileType));
663 }
664 }
665 }
666
667 if (
668 in_array(
669 $profileType,
670 array("Membership", "Participant", "Contribution")
671 )
672 ) {
673 $return = TRUE;
674 if (!$statusMessage) {
675 $statusMessage = ts('Profile is not configured for the selected action.');
676 }
677 }
678 }
679
680 //lets have single status message,
681 $this->assign('statusMessage', $statusMessage);
682 if ($return) {
683 return FALSE;
684 }
685
686 $this->assign('id', $this->_id);
687 $this->assign('mode', $this->_mode);
688 $this->assign('action', $this->_action);
689 $this->assign('fields', $this->_fields);
690 $this->assign('fieldset', (isset($this->_fieldset)) ? $this->_fieldset : "");
691
692 // should we restrict what we display
693 $admin = TRUE;
694 if ($this->_mode == self::MODE_EDIT) {
695 $admin = FALSE;
696 // show all fields that are visibile:
697 // if we are a admin OR the same user OR acl-user with access to the profile
698 // or we have checksum access to this contact (i.e. the user without a login) - CRM-5909
699 if (
700 CRM_Core_Permission::check('administer users') ||
701 $this->_id == $this->_currentUserID ||
702 $this->_isPermissionedChecksum ||
703 in_array(
704 $this->_gid,
705 CRM_ACL_API::group(
706 CRM_Core_Permission::EDIT,
707 NULL,
708 'civicrm_uf_group',
709 CRM_Core_PseudoConstant::get('CRM_Core_DAO_UFField', 'uf_group_id')
710 )
711 )
712 ) {
713 $admin = TRUE;
714 }
715 }
716
717 // if false, user is not logged-in.
718 $anonUser = FALSE;
719 if (!$this->_currentUserID) {
720 $defaultLocationType = CRM_Core_BAO_LocationType::getDefault();
721 $primaryLocationType = $defaultLocationType->id;
722 $anonUser = TRUE;
723 }
724 $this->assign('anonUser', $anonUser);
725
726 $addCaptcha = array();
727 $emailPresent = FALSE;
728
729 // add the form elements
730 foreach ($this->_fields as $name => $field) {
731 // make sure that there is enough permission to expose this field
732 if (!$admin && $field['visibility'] == 'User and User Admin Only') {
733 unset($this->_fields[$name]);
734 continue;
735 }
736
737 // since the CMS manages the email field, suppress the email display if in
738 // register mode which occur within the CMS form
739 if ($this->_mode == self::MODE_REGISTER && substr($name, 0, 5) == 'email') {
740 unset($this->_fields[$name]);
741 continue;
742 }
743
744 list($prefixName, $index) = CRM_Utils_System::explode('-', $name, 2);
745
746 CRM_Core_BAO_UFGroup::buildProfile($this, $field, $this->_mode);
747
748 if ($field['add_to_group_id']) {
749 $addToGroupId = $field['add_to_group_id'];
750 }
751
752 //build array for captcha
753 if ($field['add_captcha']) {
754 $addCaptcha[$field['group_id']] = $field['add_captcha'];
755 }
756
757 if (($name == 'email-Primary') || ($name == 'email-' . isset($primaryLocationType) ? $primaryLocationType : "")) {
758 $emailPresent = TRUE;
759 $this->_mail = $name;
760 }
761 }
762
763 // add captcha only for create mode.
764 if ($this->_mode == self::MODE_CREATE) {
765 // suppress captcha for logged in users only
766 if ($this->_currentUserID) {
767 $this->_isAddCaptcha = FALSE;
768 }
769 else if (!$this->_isAddCaptcha && !empty($addCaptcha)) {
770 $this->_isAddCaptcha = TRUE;
771 }
772
773 if ($this->_gid) {
774 $dao = new CRM_Core_DAO_UFGroup();
775 $dao->id = $this->_gid;
776 $dao->addSelect();
777 $dao->addSelect('is_update_dupe');
778 if ($dao->find(TRUE)) {
779 if ($dao->is_update_dupe) {
780 $this->_isUpdateDupe = $dao->is_update_dupe;
781 }
782 }
783 }
784 }
785 else {
786 $this->_isAddCaptcha = FALSE;
787 }
788
789 //finally add captcha to form.
790 if ($this->_isAddCaptcha) {
791 $captcha = CRM_Utils_ReCAPTCHA::singleton();
792 $captcha->add($this);
793 }
794 $this->assign("isCaptcha", $this->_isAddCaptcha);
795
796 if ($this->_mode != self::MODE_SEARCH) {
797 if (isset($addToGroupId)) {
798 $this->_ufGroup['add_to_group_id'] = $addToGroupId;
799 }
800 }
801
802 //let's do set defaults for the profile
803 $this->setDefaultsValues();
804
805 $action = CRM_Utils_Request::retrieve('action', 'String', $this, FALSE, NULL);
806 if ($this->_mode == self::MODE_CREATE) {
807 CRM_Core_BAO_CMSUser::buildForm($this, $this->_gid, $emailPresent, $action);
808 }
809 else {
810 $this->assign('showCMS', FALSE);
811 }
812
813 $this->assign('groupId', $this->_gid);
814
815 // if view mode pls freeze it with the done button.
816 if ($this->_action & CRM_Core_Action::VIEW) {
817 $this->freeze();
818 }
819
820 if ($this->_context == 'dialog') {
821 $this->addElement(
822 'submit',
823 $this->_duplicateButtonName,
824 ts('Save Matching Contact')
825 );
826 }
827 }
828
829 /*
830 * Function to validate profile and provided activity Id
831 *
832 * @params Integer $activityId Activity Id
833 * @params Integer $gid Profile Id
834 *
835 * @return Array $errors Errors ( if any ).
836 */
837 /**
838 * @param $activityId
839 * @param $contactId
840 * @param $gid
841 *
842 * @return array
843 */
844 static function validateContactActivityProfile($activityId, $contactId, $gid) {
845 $errors = array();
846 if (!$activityId) {
847 $errors[] = 'Profile is using one or more activity fields, and is missing the activity Id (aid) in the URL.';
848 return $errors;
849 }
850
851 $activityDetails = array();
852 $activityParams = array('id' => $activityId);
853 CRM_Activity_BAO_Activity::retrieve($activityParams, $activityDetails);
854
855 if (empty($activityDetails)) {
856 $errors[] = 'Invalid Activity Id (aid).';
857 return $errors;
858 }
859
860 $profileActivityTypes = CRM_Core_BAO_UFGroup::groupTypeValues($gid, 'Activity');
861
862 if ((!empty($profileActivityTypes['Activity']) &&
863 !in_array($activityDetails['activity_type_id'], $profileActivityTypes['Activity'])
864 ) ||
865 (!in_array($contactId, $activityDetails['assignee_contact']) &&
866 !in_array($contactId, $activityDetails['target_contact'])
867 )
868 ) {
869 $errors[] = 'This activity cannot be edited or viewed via this profile.';
870 }
871
872 return $errors;
873 }
874
875 /**
876 * global form rule
877 *
878 * @param array $fields the input form values
879 * @param array $files the uploaded files if any
880 * @param object $form the form object
881 *
882 * @return true if no errors, else array of errors
883 * @access public
884 * @static
885 */
886 static function formRule($fields, $files, $form) {
887 CRM_Utils_Hook::validateProfile($form->_ufGroup['name']);
888
889 $errors = array();
890 // if no values, return
891 if (empty($fields)) {
892 return TRUE;
893 }
894
895 $register = NULL;
896
897 // hack we use a -1 in options to indicate that its registration
898 if ($form->_id) {
899 $form->_isUpdateDupe = 1;
900 }
901
902 if ($form->_mode == CRM_Profile_Form::MODE_REGISTER) {
903 $register = TRUE;
904 }
905
906 // dont check for duplicates during registration validation: CRM-375
907 if (!$register && empty($fields['_qf_Edit_upload_duplicate'])) {
908 // fix for CRM-3240
909 if (!empty($fields['email-Primary'])) {
910 $fields['email'] = CRM_Utils_Array::value('email-Primary', $fields);
911 }
912
913 // fix for CRM-6141
914 if (!empty($fields['phone-Primary-1']) && empty($fields['phone-Primary'])) {
915 $fields['phone-Primary'] = $fields['phone-Primary-1'];
916 }
917
918 $ctype = CRM_Core_BAO_UFGroup::getContactType($form->_gid);
919 // If all profile fields is of Contact Type then consider
920 // profile is of Individual type(default).
921 if (!$ctype) {
922 $ctype = 'Individual';
923 }
924 $dedupeParams = CRM_Dedupe_Finder::formatParams($fields, $ctype);
925 if ($form->_mode == CRM_Profile_Form::MODE_CREATE) {
926 // fix for CRM-2888
927 $exceptions = array();
928 }
929 else {
930 // for edit mode we need to allow our own record to be a dupe match!
931 $exceptions = array($form->_session->get('userID'));
932 }
933
934 // for dialog mode we should always use fuzzy rule.
935 $ruleType = 'Unsupervised';
936 if ($form->_context == 'dialog') {
937 $ruleType = 'Supervised';
938 }
939
940 $dedupeParams['check_permission'] = FALSE;
941 $ids = CRM_Dedupe_Finder::dupesByParams($dedupeParams,
942 $ctype,
943 $ruleType,
944 $exceptions
945 );
946 if ($ids) {
947 if ($form->_isUpdateDupe == 2) {
948 CRM_Core_Session::setStatus(ts('Note: this contact may be a duplicate of an existing record.'), ts('Possible Duplicate Detected'), 'alert');
949 }
950 elseif ($form->_isUpdateDupe == 1) {
951 if (!$form->_id) {
952 $form->_id = $ids[0];
953 }
954 }
955 else {
956 if ($form->_context == 'dialog') {
957 $contactLinks = CRM_Contact_BAO_Contact_Utils::formatContactIDSToLinks($ids, TRUE, TRUE);
958
959 $duplicateContactsLinks = '<div class="matching-contacts-found">';
960 $duplicateContactsLinks .= ts('One matching contact was found. ', array('count' => count($contactLinks['rows']), 'plural' => '%count matching contacts were found.<br />'));
961 if ($contactLinks['msg'] == 'view') {
962 $duplicateContactsLinks .= ts('You can View the existing contact.', array('count' => count($contactLinks['rows']), 'plural' => 'You can View the existing contacts.'));
963 }
964 else {
965 $duplicateContactsLinks .= ts('You can View or Edit the existing contact.', array('count' => count($contactLinks['rows']), 'plural' => 'You can View or Edit the existing contacts.'));
966 }
967 $duplicateContactsLinks .= '</div>';
968 $duplicateContactsLinks .= '<table class="matching-contacts-actions">';
969 $row = '';
970 for ($i = 0; $i < sizeof($contactLinks['rows']); $i++) {
971 $row .= ' <tr> ';
972 $row .= ' <td class="matching-contacts-name"> ';
973 $row .= $contactLinks['rows'][$i]['display_name'];
974 $row .= ' </td>';
975 $row .= ' <td class="matching-contacts-email"> ';
976 $row .= $contactLinks['rows'][$i]['primary_email'];
977 $row .= ' </td>';
978 $row .= ' <td class="action-items"> ';
979 $row .= $contactLinks['rows'][$i]['view'] . ' ';
980 $row .= $contactLinks['rows'][$i]['edit'];
981 $row .= ' </td>';
982 $row .= ' </tr> ';
983 }
984
985 $duplicateContactsLinks .= $row . '</table>';
986 $duplicateContactsLinks .= "If you're sure this record is not a duplicate, click the 'Save Matching Contact' button below.";
987
988 $errors['_qf_default'] = $duplicateContactsLinks;
989
990 // let smarty know that there are duplicates
991 $template = CRM_Core_Smarty::singleton();
992 $template->assign('isDuplicate', 1);
993 }
994 else {
995 $errors['_qf_default'] = ts('A record already exists with the same information.');
996 }
997 }
998 }
999 }
1000
1001 foreach ($fields as $key => $value) {
1002 list($fieldName, $locTypeId, $phoneTypeId) = CRM_Utils_System::explode('-', $key, 3);
1003 if ($fieldName == 'state_province' && !empty($fields["country-{$locTypeId}"])) {
1004 // Validate Country - State list
1005 $countryId = $fields["country-{$locTypeId}"];
1006 $stateProvinceId = $value;
1007
1008 if ($stateProvinceId && $countryId) {
1009 $stateProvinceDAO = new CRM_Core_DAO_StateProvince();
1010 $stateProvinceDAO->id = $stateProvinceId;
1011 $stateProvinceDAO->find(TRUE);
1012
1013 if ($stateProvinceDAO->country_id != $countryId) {
1014 // country mismatch hence display error
1015 $stateProvinces = CRM_Core_PseudoConstant::stateProvince();
1016 $countries = CRM_Core_PseudoConstant::country();
1017 $errors[$key] = "State/Province " . $stateProvinces[$stateProvinceId] . " is not part of " . $countries[$countryId] . ". It belongs to " . $countries[$stateProvinceDAO->country_id] . ".";
1018 }
1019 }
1020 }
1021
1022 if ($fieldName == 'county' && $fields["state_province-{$locTypeId}"]) {
1023 // Validate County - State list
1024 $stateProvinceId = $fields["state_province-{$locTypeId}"];
1025 $countyId = $value;
1026
1027 if ($countyId && $stateProvinceId) {
1028 $countyDAO = new CRM_Core_DAO_County();
1029 $countyDAO->id = $countyId;
1030 $countyDAO->find(TRUE);
1031
1032 if ($countyDAO->state_province_id != $stateProvinceId) {
1033 // state province mismatch hence display error
1034 $stateProvinces = CRM_Core_PseudoConstant::stateProvince();
1035 $counties = CRM_Core_PseudoConstant::county();
1036 $errors[$key] = "County " . $counties[$countyId] . " is not part of " . $stateProvinces[$stateProvinceId] . ". It belongs to " . $stateProvinces[$countyDAO->state_province_id] . ".";
1037 }
1038 }
1039 }
1040 }
1041 foreach (CRM_Contact_BAO_Contact::$_greetingTypes as $greeting) {
1042 if ($greetingType = CRM_Utils_Array::value($greeting, $fields)) {
1043 $customizedValue = CRM_Core_OptionGroup::getValue($greeting, 'Customized', 'name');
1044 if ($customizedValue == $greetingType && empty($fields[$greeting . '_custom'])) {
1045 $errors[$greeting . '_custom'] = ts('Custom %1 is a required field if %1 is of type Customized.',
1046 array(1 => ucwords(str_replace('_', ' ', $greeting)))
1047 );
1048 }
1049 }
1050 }
1051
1052 return empty($errors) ? TRUE : $errors;
1053 }
1054
1055 /**
1056 * Process the user submitted custom data values.
1057 *
1058 * @access public
1059 *
1060 * @return void
1061 */
1062 public function postProcess() {
1063 $params = $this->controller->exportValues($this->_name);
1064
1065 //if the delete record button is clicked
1066 if ($this->_deleteButtonName) {
1067 if (!empty($_POST[$this->_deleteButtonName]) && $this->_recordId) {
1068 $filterParams['id'] = $this->_customGroupId;
1069 $returnProperties = array('is_multiple', 'table_name');
1070 CRM_Core_DAO::commonRetrieve("CRM_Core_DAO_CustomGroup", $filterParams, $returnValues, $returnProperties);
1071 if (!empty($returnValues['is_multiple'])) {
1072 if ($tableName = CRM_Utils_Array::value('table_name', $returnValues)) {
1073 $sql = "DELETE FROM {$tableName} WHERE id = %1 AND entity_id = %2";
1074 $sqlParams = array(
1075 1 => array($this->_recordId, 'Integer'),
1076 2 => array($this->_id, 'Integer')
1077 );
1078 CRM_Core_DAO::executeQuery($sql, $sqlParams);
1079 CRM_Core_Session::setStatus(ts('Your record has been deleted.'), ts('Deleted'), 'success');
1080 }
1081 }
1082 return;
1083 }
1084 }
1085 CRM_Utils_Hook::processProfile($this->_ufGroup['name']);
1086 if (!empty($params['image_URL'])) {
1087 CRM_Contact_BAO_Contact::processImageParams($params);
1088 }
1089
1090 $greetingTypes = array(
1091 'addressee' => 'addressee_id',
1092 'email_greeting' => 'email_greeting_id',
1093 'postal_greeting' => 'postal_greeting_id',
1094 );
1095
1096 $details = array();
1097 if ($this->_id) {
1098 $contactDetails = CRM_Contact_BAO_Contact::getHierContactDetails($this->_id,
1099 $greetingTypes
1100 );
1101 $details = $contactDetails[0][$this->_id];
1102 }
1103 if (!(!empty($details['addressee_id']) || !empty($details['email_greeting_id']) ||
1104 CRM_Utils_Array::value('postal_greeting_id', $details)
1105 )) {
1106
1107 $profileType = CRM_Core_BAO_UFField::getProfileType($this->_gid);
1108 //Though Profile type is contact we need
1109 //Individual/Household/Organization for setting Greetings.
1110 if ($profileType == 'Contact') {
1111 $profileType = 'Individual';
1112 //if we editing Household/Organization.
1113 if ($this->_id) {
1114 $profileType = CRM_Contact_BAO_Contact::getContactType($this->_id);
1115 }
1116 }
1117 if (CRM_Contact_BAO_ContactType::isaSubType($profileType)) {
1118 $profileType = CRM_Contact_BAO_ContactType::getBasicType($profileType);
1119 }
1120
1121 foreach ($greetingTypes as $key => $value) {
1122 if (!array_key_exists($key, $params)) {
1123 $params[$key] = CRM_Contact_BAO_Contact_Utils::defaultGreeting($profileType, $key);
1124 }
1125 }
1126 }
1127
1128 $transaction = new CRM_Core_Transaction();
1129
1130 //used to send subscribe mail to the group which user want.
1131 //if the profile double option in is enabled
1132 $mailingType = array();
1133
1134 $result = NULL;
1135 foreach ($params as $name => $values) {
1136 if (substr($name, 0, 6) == 'email-') {
1137 $result['email'] = $values;
1138 }
1139 }
1140
1141 //array of group id, subscribed by contact
1142 $contactGroup = array();
1143 if (!empty($params['group']) &&
1144 CRM_Core_BAO_UFGroup::isProfileDoubleOptin()
1145 ) {
1146 $groupSubscribed = array();
1147 if (!empty($result['email'])) {
1148 if ($this->_id) {
1149 $contactGroups = new CRM_Contact_DAO_GroupContact();
1150 $contactGroups->contact_id = $this->_id;
1151 $contactGroups->status = 'Added';
1152 $contactGroups->find();
1153 $contactGroup = array();
1154 while ($contactGroups->fetch()) {
1155 $contactGroup[] = $contactGroups->group_id;
1156 $groupSubscribed[$contactGroups->group_id] = 1;
1157 }
1158 }
1159 foreach ($params['group'] as $key => $val) {
1160 if (!$val) {
1161 unset($params['group'][$key]);
1162 continue;
1163 }
1164 $groupTypes = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Group',
1165 $key, 'group_type', 'id'
1166 );
1167 $groupType = explode(CRM_Core_DAO::VALUE_SEPARATOR,
1168 substr($groupTypes, 1, -1)
1169 );
1170 //filter group of mailing type and unset it from params
1171 if (in_array(2, $groupType)) {
1172 //if group is already subscribed , ignore it
1173 $groupExist = CRM_Utils_Array::key($key, $contactGroup);
1174 if (!isset($groupExist)) {
1175 $mailingType[] = $key;
1176 unset($params['group'][$key]);
1177 }
1178 }
1179 }
1180 }
1181 }
1182
1183 $addToGroupId = CRM_Utils_Array::value('add_to_group_id', $this->_ufGroup);
1184 if (!empty($addToGroupId)) {
1185 //run same check whether group is a mailing list
1186 $groupTypes = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Group',
1187 $addToGroupId, 'group_type', 'id'
1188 );
1189 $groupType = explode(CRM_Core_DAO::VALUE_SEPARATOR,
1190 substr($groupTypes, 1, -1)
1191 );
1192 //filter group of mailing type and unset it from params
1193 if (in_array(2, $groupType) && !empty($result['email']) &&
1194 CRM_Core_BAO_UFGroup::isProfileAddToGroupDoubleOptin()
1195 ) {
1196 if (!count($contactGroup)) {
1197 //array of group id, subscribed by contact
1198 $contactGroup = array();
1199 if ($this->_id) {
1200 $contactGroups = new CRM_Contact_DAO_GroupContact();
1201 $contactGroups->contact_id = $this->_id;
1202 $contactGroups->status = 'Added';
1203 $contactGroups->find();
1204 $contactGroup = array();
1205 while ($contactGroups->fetch()) {
1206 $contactGroup[] = $contactGroups->group_id;
1207 $groupSubscribed[$contactGroups->group_id] = 1;
1208 }
1209 }
1210 }
1211 //if group is already subscribed , ignore it
1212 $groupExist = CRM_Utils_Array::key($addToGroupId, $contactGroup);
1213 if (!isset($groupExist)) {
1214 $mailingType[] = $addToGroupId;
1215 $addToGroupId = NULL;
1216 }
1217 }
1218 else {
1219 // since we are directly adding contact to group lets unset it from mailing
1220 if ($key = array_search($addToGroupId, $mailingType)) {
1221 unset($mailingType[$key]);
1222 }
1223 }
1224 }
1225
1226 if ($this->_grid) {
1227 $params['group'] = $groupSubscribed;
1228 }
1229
1230 // commenting below code, since we potentially
1231 // triggered maximum name field formatting cases during CRM-4430.
1232 // CRM-4343
1233 // $params['preserveDBName'] = true;
1234
1235 $profileFields = $this->_fields;
1236 if (($this->_mode & self::MODE_EDIT) && $this->_activityId && $this->_isContactActivityProfile) {
1237 $profileFields = $activityParams = array();
1238 foreach ($this->_fields as $fieldName => $field) {
1239 if (CRM_Utils_Array::value('field_type', $field) == 'Activity') {
1240 if (isset($params[$fieldName])) {
1241 $activityParams[$fieldName] = $params[$fieldName];
1242 }
1243 if (isset($params['activity_date_time'])) {
1244 $activityParams['activity_date_time'] = CRM_Utils_Date::processDate($params['activity_date_time'], $params['activity_date_time_time']);
1245 }
1246 if (!empty($params[$fieldName]) && isset($params["{$fieldName}_id"])) {
1247 $activityParams[$fieldName] = $params["{$fieldName}_id"];
1248 }
1249 }
1250 else {
1251 $profileFields[$fieldName] = $field;
1252 }
1253 }
1254
1255 if (!empty($activityParams)) {
1256 $activityParams['version'] = 3;
1257 $activityParams['id'] = $this->_activityId;
1258 $activityParams['skipRecentView'] = TRUE;
1259 civicrm_api('Activity', 'create', $activityParams);
1260 }
1261 }
1262
1263 if ($this->_multiRecord && $this->_recordId && $this->_multiRecordFields && $this->_recordExists) {
1264 $params['customRecordValues'][$this->_recordId] = array_keys($this->_multiRecordFields);
1265 }
1266
1267 $this->_id = CRM_Contact_BAO_Contact::createProfileContact(
1268 $params,
1269 $profileFields,
1270 $this->_id,
1271 $addToGroupId,
1272 $this->_gid,
1273 $this->_ctype,
1274 TRUE
1275 );
1276
1277 //mailing type group
1278 if (!empty($mailingType)) {
1279 // we send in the contactID so we match the same groups and are exact, rather than relying on email
1280 // CRM-8710
1281 CRM_Mailing_Event_BAO_Subscribe::commonSubscribe($mailingType, $result, $this->_id, 'profile');
1282 }
1283
1284 $ufGroups = array();
1285 if ($this->_gid) {
1286 $ufGroups[$this->_gid] = 1;
1287 }
1288 elseif ($this->_mode == self::MODE_REGISTER) {
1289 $ufGroups = CRM_Core_BAO_UFGroup::getModuleUFGroup('User Registration');
1290 }
1291
1292 foreach ($ufGroups as $gId => $val) {
1293 if ($notify = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_UFGroup', $gId, 'notify')) {
1294 $values = CRM_Core_BAO_UFGroup::checkFieldsEmptyValues($gId, $this->_id, NULL);
1295 CRM_Core_BAO_UFGroup::commonSendMail($this->_id, $values);
1296 }
1297 }
1298
1299 //create CMS user (if CMS user option is selected in profile)
1300 if (!empty($params['cms_create_account']) &&
1301 $this->_mode == self::MODE_CREATE
1302 ) {
1303 $params['contactID'] = $this->_id;
1304 if (!CRM_Core_BAO_CMSUser::create($params, $this->_mail)) {
1305 CRM_Core_Session::setStatus(ts('Your profile is not saved and Account is not created.'), ts('Profile Error'), 'error');
1306 CRM_Core_Error::debug_log_message("Rolling back transaction as CMSUser Create failed in Profile_Form for contact " . $params['contactID']);
1307 $transaction->rollback();
1308 return CRM_Utils_System::redirect(CRM_Utils_System::url('civicrm/profile/create',
1309 'reset=1&gid=' . $this->_gid
1310 ));
1311 }
1312 }
1313
1314 $transaction->commit();
1315 }
1316
1317 /**
1318 * @param null $suffix
1319 *
1320 * @return null|string
1321 */
1322 function checkTemplateFileExists($suffix = NULL) {
1323 if ($this->_gid) {
1324 $templateFile = "CRM/Profile/Form/{$this->_gid}/{$this->_name}.{$suffix}tpl";
1325 $template = CRM_Core_Form::getTemplate();
1326 if ($template->template_exists($templateFile)) {
1327 return $templateFile;
1328 }
1329
1330 // lets see if we have customized by name
1331 $ufGroupName = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_UFGroup', $this->_gid, 'name');
1332 if ($ufGroupName) {
1333 $templateFile = "CRM/Profile/Form/{$ufGroupName}/{$this->_name}.{$suffix}tpl";
1334 if ($template->template_exists($templateFile)) {
1335 return $templateFile;
1336 }
1337 }
1338 }
1339 return NULL;
1340 }
1341
1342 /**
1343 * Use the form name to create the tpl file name
1344 *
1345 * @return string
1346 * @access public
1347 */
1348 /**
1349 * @return string
1350 */
1351 function getTemplateFileName() {
1352 $fileName = $this->checkTemplateFileExists();
1353 return $fileName ? $fileName : parent::getTemplateFileName();
1354 }
1355
1356 /**
1357 * Default extra tpl file basically just replaces .tpl with .extra.tpl
1358 * i.e. we dont override
1359 *
1360 * @return string
1361 * @access public
1362 */
1363 /**
1364 * @return string
1365 */
1366 function overrideExtraTemplateFileName() {
1367 $fileName = $this->checkTemplateFileExists('extra.');
1368 return $fileName ? $fileName : parent::overrideExtraTemplateFileName();
1369 }
1370 }
1371