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