3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
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. |
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. |
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 +--------------------------------------------------------------------+
31 * @copyright CiviCRM LLC (c) 2004-2015
37 * This class generates form components generic to all the contact types.
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.
44 class CRM_Contact_Form_Contact
extends CRM_Core_Form
{
47 * The contact type of the form.
54 * The contact type of the form.
58 public $_contactSubType;
61 * The contact id, used when editing the form
68 * The default group id passed in via the url.
75 * The default tag id passed in via the url.
82 * Name of de-dupe button
86 protected $_dedupeButtonName;
89 * Name of optional save duplicate button.
93 protected $_duplicateButtonName;
95 protected $_editOptions = array();
97 protected $_oldSubtypes = array();
101 public $_values = array();
105 public $_customValueCount;
107 * The array of greetings with option group and filed names.
114 * Do we want to parse street address.
116 public $_parseStreetAddress;
119 * Check contact has a subtype or not.
121 public $_isContactSubType;
124 * Lets keep a cache of all the values that we retrieved.
125 * THis is an attempt to avoid the number of update statements
126 * during the write phase
128 public $_preEditValues;
131 * Build all the data structures needed to build the form.
135 public function preProcess() {
136 $this->_action
= CRM_Utils_Request
::retrieve('action', 'String', $this, FALSE, 'add');
138 $this->_dedupeButtonName
= $this->getButtonName('refresh', 'dedupe');
139 $this->_duplicateButtonName
= $this->getButtonName('upload', 'duplicate');
141 CRM_Core_Resources
::singleton()
142 ->addStyleFile('civicrm', 'css/contactSummary.css', 2, 'html-header');
144 $session = CRM_Core_Session
::singleton();
145 if ($this->_action
== CRM_Core_Action
::ADD
) {
146 // check for add contacts permissions
147 if (!CRM_Core_Permission
::check('add contacts')) {
148 CRM_Utils_System
::permissionDenied();
149 CRM_Utils_System
::civiExit();
151 $this->_contactType
= CRM_Utils_Request
::retrieve('ct', 'String',
152 $this, TRUE, NULL, 'REQUEST'
154 if (!in_array($this->_contactType
,
155 array('Individual', 'Household', 'Organization')
158 CRM_Core_Error
::statusBounce(ts('Could not get a contact id and/or contact type'));
161 $this->_isContactSubType
= FALSE;
162 if ($this->_contactSubType
= CRM_Utils_Request
::retrieve('cst', 'String', $this)) {
163 $this->_isContactSubType
= TRUE;
167 $this->_contactSubType
&&
168 !(CRM_Contact_BAO_ContactType
::isExtendsContactType($this->_contactSubType
, $this->_contactType
, TRUE))
170 CRM_Core_Error
::statusBounce(ts("Could not get a valid contact subtype for contact type '%1'", array(1 => $this->_contactType
)));
173 $this->_gid
= CRM_Utils_Request
::retrieve('gid', 'Integer',
174 CRM_Core_DAO
::$_nullObject,
177 $this->_tid
= CRM_Utils_Request
::retrieve('tid', 'Integer',
178 CRM_Core_DAO
::$_nullObject,
181 $typeLabel = CRM_Contact_BAO_ContactType
::contactTypePairs(TRUE, $this->_contactSubType ?
182 $this->_contactSubType
: $this->_contactType
184 $typeLabel = implode(' / ', $typeLabel);
186 CRM_Utils_System
::setTitle(ts('New %1', array(1 => $typeLabel)));
187 $session->pushUserContext(CRM_Utils_System
::url('civicrm/dashboard', 'reset=1'));
188 $this->_contactId
= NULL;
192 if (!$this->_contactId
) {
193 $this->_contactId
= CRM_Utils_Request
::retrieve('cid', 'Positive', $this, TRUE);
196 if ($this->_contactId
) {
198 $params = array('id' => $this->_contactId
);
199 $returnProperities = array('id', 'contact_type', 'contact_sub_type', 'modified_date', 'is_deceased');
200 CRM_Core_DAO
::commonRetrieve('CRM_Contact_DAO_Contact', $params, $defaults, $returnProperities);
202 if (empty($defaults['id'])) {
203 CRM_Core_Error
::statusBounce(ts('A Contact with that ID does not exist: %1', array(1 => $this->_contactId
)));
206 $this->_contactType
= CRM_Utils_Array
::value('contact_type', $defaults);
207 $this->_contactSubType
= CRM_Utils_Array
::value('contact_sub_type', $defaults);
209 // check for permissions
210 $session = CRM_Core_Session
::singleton();
211 if (!CRM_Contact_BAO_Contact_Permission
::allow($this->_contactId
, CRM_Core_Permission
::EDIT
)) {
212 CRM_Core_Error
::statusBounce(ts('You do not have the necessary permission to edit this contact.'));
215 $displayName = CRM_Contact_BAO_Contact
::displayName($this->_contactId
);
216 if ($defaults['is_deceased']) {
217 $displayName .= ' <span class="crm-contact-deceased">(deceased)</span>';
219 $displayName = ts('Edit %1', array(1 => $displayName));
221 // Check if this is default domain contact CRM-10482
222 if (CRM_Contact_BAO_Contact
::checkDomainContact($this->_contactId
)) {
223 $displayName .= ' (' . ts('default organization') . ')';
226 // omitting contactImage from title for now since the summary overlay css doesn't work outside of our crm-container
227 CRM_Utils_System
::setTitle($displayName);
228 $context = CRM_Utils_Request
::retrieve('context', 'String', $this);
229 $qfKey = CRM_Utils_Request
::retrieve('key', 'String', $this);
231 $urlParams = 'reset=1&cid=' . $this->_contactId
;
233 $urlParams .= "&context=$context";
236 if (CRM_Utils_Rule
::qfKey($qfKey)) {
238 $urlParams .= "&key=$qfKey";
241 $session->pushUserContext(CRM_Utils_System
::url('civicrm/contact/view', $urlParams));
243 $values = $this->get('values');
244 // get contact values.
245 if (!empty($values)) {
246 $this->_values
= $values;
250 'id' => $this->_contactId
,
251 'contact_id' => $this->_contactId
,
252 'noRelationships' => TRUE,
257 $contact = CRM_Contact_BAO_Contact
::retrieve($params, $this->_values
, TRUE);
258 $this->set('values', $this->_values
);
262 CRM_Core_Error
::statusBounce(ts('Could not get a contact_id and/or contact_type'));
266 // parse street address, CRM-5450
267 $this->_parseStreetAddress
= $this->get('parseStreetAddress');
268 if (!isset($this->_parseStreetAddress
)) {
269 $addressOptions = CRM_Core_BAO_Setting
::valueOptions(CRM_Core_BAO_Setting
::SYSTEM_PREFERENCES_NAME
,
272 $this->_parseStreetAddress
= FALSE;
273 if (!empty($addressOptions['street_address']) && !empty($addressOptions['street_address_parsing'])) {
274 $this->_parseStreetAddress
= TRUE;
276 $this->set('parseStreetAddress', $this->_parseStreetAddress
);
278 $this->assign('parseStreetAddress', $this->_parseStreetAddress
);
280 $this->_editOptions
= $this->get('contactEditOptions');
281 if (CRM_Utils_System
::isNull($this->_editOptions
)) {
282 $this->_editOptions
= CRM_Core_BAO_Setting
::valueOptions(CRM_Core_BAO_Setting
::SYSTEM_PREFERENCES_NAME
,
283 'contact_edit_options', TRUE, NULL,
284 FALSE, 'name', TRUE, 'AND v.filter = 0'
286 $this->set('contactEditOptions', $this->_editOptions
);
289 // build demographics only for Individual contact type
290 if ($this->_contactType
!= 'Individual' &&
291 array_key_exists('Demographics', $this->_editOptions
)
293 unset($this->_editOptions
['Demographics']);
296 // in update mode don't show notes
297 if ($this->_contactId
&& array_key_exists('Notes', $this->_editOptions
)) {
298 unset($this->_editOptions
['Notes']);
301 $this->assign('editOptions', $this->_editOptions
);
302 $this->assign('contactType', $this->_contactType
);
303 $this->assign('contactSubType', $this->_contactSubType
);
305 //build contact subtype form element, CRM-6864
306 $buildContactSubType = TRUE;
307 if ($this->_contactSubType
&& ($this->_action
& CRM_Core_Action
::ADD
)) {
308 $buildContactSubType = FALSE;
310 $this->assign('buildContactSubType', $buildContactSubType);
312 // get the location blocks.
313 $this->_blocks
= $this->get('blocks');
314 if (CRM_Utils_System
::isNull($this->_blocks
)) {
315 $this->_blocks
= CRM_Core_BAO_Setting
::valueOptions(CRM_Core_BAO_Setting
::SYSTEM_PREFERENCES_NAME
,
316 'contact_edit_options', TRUE, NULL,
317 FALSE, 'name', TRUE, 'AND v.filter = 1'
319 $this->set('blocks', $this->_blocks
);
321 $this->assign('blocks', $this->_blocks
);
323 // this is needed for custom data.
324 $this->assign('entityID', $this->_contactId
);
326 // also keep the convention.
327 $this->assign('contactId', $this->_contactId
);
330 CRM_Contact_Form_Location
::preProcess($this);
332 // retain the multiple count custom fields value
333 if (!empty($_POST['hidden_custom'])) {
334 $customGroupCount = CRM_Utils_Array
::value('hidden_custom_group_count', $_POST);
336 if ($contactSubType = CRM_Utils_Array
::value('contact_sub_type', $_POST)) {
337 $paramSubType = implode(',', $contactSubType);
340 $this->_getCachedTree
= FALSE;
341 unset($customGroupCount[0]);
342 foreach ($customGroupCount as $groupID => $groupCount) {
343 if ($groupCount > 1) {
344 $this->set('groupID', $groupID);
346 for ($i = 0; $i <= $groupCount; $i++
) {
347 CRM_Custom_Form_CustomData
::preProcess($this, NULL, $contactSubType,
348 $i, $this->_contactType
350 CRM_Contact_Form_Edit_CustomData
::buildQuickForm($this);
355 //reset all the ajax stuff, for normal processing
356 if (isset($this->_groupTree
)) {
357 $this->_groupTree
= NULL;
359 $this->set('groupID', NULL);
360 $this->_getCachedTree
= TRUE;
363 // execute preProcess dynamically by js else execute normal preProcess
364 if (array_key_exists('CustomData', $this->_editOptions
)) {
365 //assign a parameter to pass for sub type multivalue
366 //custom field to load
367 if ($this->_contactSubType ||
isset($paramSubType)) {
368 $paramSubType = (isset($paramSubType)) ?
$paramSubType :
369 str_replace(CRM_Core_DAO
::VALUE_SEPARATOR
, ',', trim($this->_contactSubType
, CRM_Core_DAO
::VALUE_SEPARATOR
));
371 $this->assign('paramSubType', $paramSubType);
374 if (CRM_Utils_Request
::retrieve('type', 'String', CRM_Core_DAO
::$_nullObject)) {
375 CRM_Contact_Form_Edit_CustomData
::preProcess($this);
378 $contactSubType = $this->_contactSubType
;
379 // need contact sub type to build related grouptree array during post process
380 if (!empty($_POST['contact_sub_type'])) {
381 $contactSubType = $_POST['contact_sub_type'];
383 //only custom data has preprocess hence directly call it
384 CRM_Custom_Form_CustomData
::preProcess($this, NULL, $contactSubType,
385 1, $this->_contactType
, $this->_contactId
387 $this->assign('customValueCount', $this->_customValueCount
);
393 * Set default values for the form. Note that in edit/view mode
394 * the default values are retrieved from the database
399 public function setDefaultValues() {
400 $defaults = $this->_values
;
403 if ($this->_action
& CRM_Core_Action
::ADD
) {
404 if (array_key_exists('TagsAndGroups', $this->_editOptions
)) {
405 // set group and tag defaults if any
407 $defaults['group'][] = $this->_gid
;
410 $defaults['tag'][$this->_tid
] = 1;
413 if ($this->_contactSubType
) {
414 $defaults['contact_sub_type'] = $this->_contactSubType
;
418 foreach ($defaults['email'] as $dontCare => & $val) {
419 if (isset($val['signature_text'])) {
420 $val['signature_text_hidden'] = $val['signature_text'];
422 if (isset($val['signature_html'])) {
423 $val['signature_html_hidden'] = $val['signature_html'];
427 if (!empty($defaults['contact_sub_type'])) {
428 $defaults['contact_sub_type'] = $this->_oldSubtypes
;
431 // set defaults for blocks ( custom data, address, communication preference, notes, tags and groups )
432 foreach ($this->_editOptions
as $name => $label) {
433 if (!in_array($name, array('Address', 'Notes'))) {
434 $className = 'CRM_Contact_Form_Edit_' . $name;
435 $className::setDefaultValues($this, $defaults);
439 //set address block defaults
440 CRM_Contact_Form_Edit_Address
::setDefaultValues($defaults, $this);
442 if (!empty($defaults['image_URL'])) {
443 list($imageWidth, $imageHeight) = getimagesize(CRM_Utils_String
::unstupifyUrl($defaults['image_URL']));
444 list($imageThumbWidth, $imageThumbHeight) = CRM_Contact_BAO_Contact
::getThumbSize($imageWidth, $imageHeight);
445 $this->assign('imageWidth', $imageWidth);
446 $this->assign('imageHeight', $imageHeight);
447 $this->assign('imageThumbWidth', $imageThumbWidth);
448 $this->assign('imageThumbHeight', $imageThumbHeight);
449 $this->assign('imageURL', $defaults['image_URL']);
452 //set location type and country to default for each block
453 $this->blockSetDefaults($defaults);
455 $this->_preEditValues
= $defaults;
460 * Do the set default related to location type id,
461 * primary location, default country
463 public function blockSetDefaults(&$defaults) {
464 $locationTypeKeys = array_filter(array_keys(CRM_Core_PseudoConstant
::get('CRM_Core_DAO_Address', 'location_type_id')), 'is_int');
465 sort($locationTypeKeys);
467 // get the default location type
468 $locationType = CRM_Core_BAO_LocationType
::getDefault();
470 // unset primary location type
471 $primaryLocationTypeIdKey = CRM_Utils_Array
::key($locationType->id
, $locationTypeKeys);
472 unset($locationTypeKeys[$primaryLocationTypeIdKey]);
474 // reset the array sequence
475 $locationTypeKeys = array_values($locationTypeKeys);
477 // get default phone and im provider id.
478 $defPhoneTypeId = key(CRM_Core_OptionGroup
::values('phone_type', FALSE, FALSE, FALSE, ' AND is_default = 1'));
479 $defIMProviderId = key(CRM_Core_OptionGroup
::values('instant_messenger_service',
480 FALSE, FALSE, FALSE, ' AND is_default = 1'
482 $defWebsiteTypeId = key(CRM_Core_OptionGroup
::values('website_type',
483 FALSE, FALSE, FALSE, ' AND is_default = 1'
486 $allBlocks = $this->_blocks
;
487 if (array_key_exists('Address', $this->_editOptions
)) {
488 $allBlocks['Address'] = $this->_editOptions
['Address'];
491 $config = CRM_Core_Config
::singleton();
492 foreach ($allBlocks as $blockName => $label) {
493 $name = strtolower($blockName);
494 $hasPrimary = $updateMode = FALSE;
496 // user is in update mode.
497 if (array_key_exists($name, $defaults) &&
498 !CRM_Utils_System
::isNull($defaults[$name])
503 for ($instance = 1; $instance <= $this->get($blockName . '_Block_Count'); $instance++
) {
504 // make we require one primary block, CRM-5505
507 $hasPrimary = CRM_Utils_Array
::value(
509 CRM_Utils_Array
::value($instance, $defaults[$name])
515 //set location to primary for first one.
516 if ($instance == 1) {
518 $defaults[$name][$instance]['is_primary'] = TRUE;
519 $defaults[$name][$instance]['location_type_id'] = $locationType->id
;
522 $locTypeId = isset($locationTypeKeys[$instance - 1]) ?
$locationTypeKeys[$instance - 1] : $locationType->id
;
523 $defaults[$name][$instance]['location_type_id'] = $locTypeId;
526 //set default country
527 if ($name == 'address' && $config->defaultContactCountry
) {
528 $defaults[$name][$instance]['country_id'] = $config->defaultContactCountry
;
531 //set default state/province
532 if ($name == 'address' && $config->defaultContactStateProvince
) {
533 $defaults[$name][$instance]['state_province_id'] = $config->defaultContactStateProvince
;
536 //set default phone type.
537 if ($name == 'phone' && $defPhoneTypeId) {
538 $defaults[$name][$instance]['phone_type_id'] = $defPhoneTypeId;
540 //set default website type.
541 if ($name == 'website' && $defWebsiteTypeId) {
542 $defaults[$name][$instance]['website_type_id'] = $defWebsiteTypeId;
545 //set default im provider.
546 if ($name == 'im' && $defIMProviderId) {
547 $defaults[$name][$instance]['provider_id'] = $defIMProviderId;
552 $defaults[$name][1]['is_primary'] = TRUE;
558 * add the rules (mainly global rules) for form.
559 * All local rules are added near the element
564 public function addRules() {
565 // skip adding formRules when custom data is build
566 if ($this->_addBlockName ||
($this->_action
& CRM_Core_Action
::DELETE
)) {
570 $this->addFormRule(array('CRM_Contact_Form_Edit_' . $this->_contactType
, 'formRule'), $this->_contactId
);
572 // Call Locking check if editing existing contact
573 if ($this->_contactId
) {
574 $this->addFormRule(array('CRM_Contact_Form_Edit_Lock', 'formRule'), $this->_contactId
);
577 if (array_key_exists('Address', $this->_editOptions
)) {
578 $this->addFormRule(array('CRM_Contact_Form_Edit_Address', 'formRule'), $this);
581 if (array_key_exists('CommunicationPreferences', $this->_editOptions
)) {
582 $this->addFormRule(array('CRM_Contact_Form_Edit_CommunicationPreferences', 'formRule'), $this);
587 * Global validation rules for the form.
589 * @param array $fields
590 * Posted values of the form.
591 * @param array $errors
592 * List of errors to be posted back to the form.
593 * @param int $contactId
594 * Contact id if doing update.
599 public static function formRule($fields, &$errors, $contactId = NULL) {
600 $config = CRM_Core_Config
::singleton();
603 //1. for each block only single value can be marked as is_primary = true.
604 //2. location type id should be present if block data present.
605 //3. check open id across db and other each block for duplicate.
606 //4. at least one location should be primary.
607 //5. also get primaryID from email or open id block.
609 // take the location blocks.
610 $blocks = CRM_Core_BAO_Setting
::valueOptions(CRM_Core_BAO_Setting
::SYSTEM_PREFERENCES_NAME
,
611 'contact_edit_options', TRUE, NULL,
612 FALSE, 'name', TRUE, 'AND v.filter = 1'
615 $otherEditOptions = CRM_Core_BAO_Setting
::valueOptions(CRM_Core_BAO_Setting
::SYSTEM_PREFERENCES_NAME
,
616 'contact_edit_options', TRUE, NULL,
617 FALSE, 'name', TRUE, 'AND v.filter = 0'
619 //get address block inside.
620 if (array_key_exists('Address', $otherEditOptions)) {
621 $blocks['Address'] = $otherEditOptions['Address'];
626 foreach ($blocks as $name => $label) {
627 $hasData = $hasPrimary = array();
628 $name = strtolower($name);
629 if (!empty($fields[$name]) && is_array($fields[$name])) {
630 foreach ($fields[$name] as $instance => $blockValues) {
631 $dataExists = self
::blockDataExists($blockValues);
633 if (!$dataExists && $name == 'address') {
634 $dataExists = CRM_Utils_Array
::value('use_shared_address', $fields['address'][$instance]);
638 // skip remaining checks for website
639 if ($name == 'website') {
643 $hasData[] = $instance;
644 if (!empty($blockValues['is_primary'])) {
645 $hasPrimary[] = $instance;
647 in_array($name, array(
650 )) && !empty($blockValues[$name])
652 $primaryID = $blockValues[$name];
656 if (empty($blockValues['location_type_id'])) {
657 $errors["{$name}[$instance][location_type_id]"] = ts('The Location Type should be set if there is %1 information.', array(1 => $label));
661 if ($name == 'openid' && !empty($blockValues[$name])) {
662 $oid = new CRM_Core_DAO_OpenID();
663 $oid->openid
= $openIds[$instance] = CRM_Utils_Array
::value($name, $blockValues);
664 $cid = isset($contactId) ?
$contactId : 0;
665 if ($oid->find(TRUE) && ($oid->contact_id
!= $cid)) {
666 $errors["{$name}[$instance][openid]"] = ts('%1 already exist.', array(1 => $blocks['OpenID']));
671 if (empty($hasPrimary) && !empty($hasData)) {
672 $errors["{$name}[1][is_primary]"] = ts('One %1 should be marked as primary.', array(1 => $label));
675 if (count($hasPrimary) > 1) {
676 $errors["{$name}[" . array_pop($hasPrimary) . "][is_primary]"] = ts('Only one %1 can be marked as primary.',
683 //do validations for all opend ids they should be distinct.
684 if (!empty($openIds) && (count(array_unique($openIds)) != count($openIds))) {
685 foreach ($openIds as $instance => $value) {
686 if (!array_key_exists($instance, array_unique($openIds))) {
687 $errors["openid[$instance][openid]"] = ts('%1 already used.', array(1 => $blocks['OpenID']));
692 // street number should be digit + suffix, CRM-5450
693 $parseStreetAddress = CRM_Utils_Array
::value('street_address_parsing',
694 CRM_Core_BAO_Setting
::valueOptions(CRM_Core_BAO_Setting
::SYSTEM_PREFERENCES_NAME
,
698 if ($parseStreetAddress) {
699 if (isset($fields['address']) &&
700 is_array($fields['address'])
702 $invalidStreetNumbers = array();
703 foreach ($fields['address'] as $cnt => $address) {
704 if ($streetNumber = CRM_Utils_Array
::value('street_number', $address)) {
705 $parsedAddress = CRM_Core_BAO_Address
::parseStreetAddress($address['street_number']);
706 if (empty($parsedAddress['street_number'])) {
707 $invalidStreetNumbers[] = $cnt;
712 if (!empty($invalidStreetNumbers)) {
713 $first = $invalidStreetNumbers[0];
714 foreach ($invalidStreetNumbers as & $num) {
715 $num = CRM_Contact_Form_Contact
::ordinalNumber($num);
717 $errors["address[$first][street_number]"] = ts('The street number you entered for the %1 address block(s) is not in an expected format. Street numbers may include numeric digit(s) followed by other characters. You can still enter the complete street address (unparsed) by clicking "Edit Complete Street Address".', array(1 => implode(', ', $invalidStreetNumbers)));
726 * Build the form object.
730 public function buildQuickForm() {
731 //load form for child blocks
732 if ($this->_addBlockName
) {
733 $className = 'CRM_Contact_Form_Edit_' . $this->_addBlockName
;
734 return $className::buildQuickForm($this);
737 if ($this->_action
== CRM_Core_Action
::UPDATE
) {
738 $deleteExtra = ts('Are you sure you want to delete contact image.');
740 CRM_Core_Action
::DELETE
=> array(
741 'name' => ts('Delete Contact Image'),
742 'url' => 'civicrm/contact/image',
743 'qs' => 'reset=1&cid=%%id%%&action=delete',
745 'onclick = "if (confirm( \'' . $deleteExtra . '\' ) ) this.href+=\'&confirmed=1\'; else return false;"',
748 $deleteURL = CRM_Core_Action
::formLink($deleteURL,
749 CRM_Core_Action
::DELETE
,
751 'id' => $this->_contactId
,
755 'contact.image.delete',
759 $this->assign('deleteURL', $deleteURL);
762 //build contact type specific fields
763 $className = 'CRM_Contact_Form_Edit_' . $this->_contactType
;
764 $className::buildQuickForm($this);
766 // build Custom data if Custom data present in edit option
767 $buildCustomData = 'noCustomDataPresent';
768 if (array_key_exists('CustomData', $this->_editOptions
)) {
769 $buildCustomData = "customDataPresent";
772 // subtype is a common field. lets keep it here
773 $subtypes = CRM_Contact_BAO_Contact
::buildOptions('contact_sub_type', 'create', array('contact_type' => $this->_contactType
));
774 if (!empty($subtypes)) {
775 $sel = $this->add('select', 'contact_sub_type', ts('Contact Type'),
778 'id' => 'contact_sub_type',
779 'multiple' => 'multiple',
780 'class' => $buildCustomData . ' crm-select2',
785 // build edit blocks ( custom data, demographics, communication preference, notes, tags and groups )
786 foreach ($this->_editOptions
as $name => $label) {
787 if ($name == 'Address') {
788 $this->_blocks
['Address'] = $this->_editOptions
['Address'];
791 if ($name == 'TagsAndGroups') {
794 $className = 'CRM_Contact_Form_Edit_' . $name;
795 $className::buildQuickForm($this);
798 // build tags and groups
799 CRM_Contact_Form_Edit_TagsAndGroups
::buildQuickForm($this, 0, CRM_Contact_Form_Edit_TagsAndGroups
::ALL
,
800 FALSE, NULL, 'Group(s)', 'Tag(s)', NULL, 'select');
802 // build location blocks.
803 CRM_Contact_Form_Edit_Lock
::buildQuickForm($this);
804 CRM_Contact_Form_Location
::buildQuickForm($this);
807 $this->addElement('file', 'image_URL', ts('Browse/Upload Image'), 'size=30 maxlength=60');
808 $this->addUploadElement('image_URL');
810 // add the dedupe button
811 $this->addElement('submit',
812 $this->_dedupeButtonName
,
813 ts('Check for Matching Contact(s)')
815 $this->addElement('submit',
816 $this->_duplicateButtonName
,
817 ts('Save Matching Contact')
819 $this->addElement('submit',
820 $this->getButtonName('next', 'sharedHouseholdDuplicate'),
821 ts('Save With Duplicate Household')
827 'name' => ts('Save'),
832 if (CRM_Core_Permission
::check('add contacts')) {
835 'name' => ts('Save and New'),
836 'spacing' => ' ',
842 'name' => ts('Cancel'),
845 if (!empty($this->_values
['contact_sub_type'])) {
846 $this->_oldSubtypes
= explode(CRM_Core_DAO
::VALUE_SEPARATOR
,
847 trim($this->_values
['contact_sub_type'], CRM_Core_DAO
::VALUE_SEPARATOR
)
850 $this->assign('oldSubtypes', json_encode($this->_oldSubtypes
));
852 $this->addButtons($buttons);
856 * Form submission of new/edit contact is processed.
861 public function postProcess() {
862 // check if dedupe button, if so return.
863 $buttonName = $this->controller
->getButtonName();
864 if ($buttonName == $this->_dedupeButtonName
) {
868 //get the submitted values in an array
869 $params = $this->controller
->exportValues($this->_name
);
871 $group = CRM_Utils_Array
::value('group', $params);
872 if (!empty($group) && is_array($group)) {
873 unset($params['group']);
874 foreach ($group as $key => $value) {
875 $params['group'][$value] = 1;
879 CRM_Contact_BAO_Contact_Optimizer
::edit($params, $this->_preEditValues
);
881 if (!empty($params['image_URL'])) {
882 CRM_Contact_BAO_Contact
::processImageParams($params);
885 if (is_numeric(CRM_Utils_Array
::value('current_employer_id', $params)) && !empty($params['current_employer'])) {
886 $params['current_employer'] = $params['current_employer_id'];
889 // don't carry current_employer_id field,
890 // since we don't want to directly update DAO object without
891 // handling related business logic ( eg related membership )
892 if (isset($params['current_employer_id'])) {
893 unset($params['current_employer_id']);
896 $params['contact_type'] = $this->_contactType
;
897 if (empty($params['contact_sub_type']) && $this->_isContactSubType
) {
898 $params['contact_sub_type'] = array($this->_contactSubType
);
901 if ($this->_contactId
) {
902 $params['contact_id'] = $this->_contactId
;
905 //make deceased date null when is_deceased = false
906 if ($this->_contactType
== 'Individual' && !empty($this->_editOptions
['Demographics']) && empty($params['is_deceased'])) {
907 $params['is_deceased'] = FALSE;
908 $params['deceased_date'] = NULL;
911 if (isset($params['contact_id'])) {
912 // process membership status for deceased contact
913 $deceasedParams = array(
914 'contact_id' => CRM_Utils_Array
::value('contact_id', $params),
915 'is_deceased' => CRM_Utils_Array
::value('is_deceased', $params, FALSE),
916 'deceased_date' => CRM_Utils_Array
::value('deceased_date', $params, NULL),
918 $updateMembershipMsg = $this->updateMembershipStatus($deceasedParams);
921 // action is taken depending upon the mode
922 if ($this->_action
& CRM_Core_Action
::UPDATE
) {
923 CRM_Utils_Hook
::pre('edit', $params['contact_type'], $params['contact_id'], $params);
926 CRM_Utils_Hook
::pre('create', $params['contact_type'], NULL, $params);
929 $customFields = CRM_Core_BAO_CustomField
::getFields($params['contact_type'], FALSE, TRUE);
932 //if subtype is set, send subtype as extend to validate subtype customfield
933 $customFieldExtends = (CRM_Utils_Array
::value('contact_sub_type', $params)) ?
$params['contact_sub_type'] : $params['contact_type'];
935 $params['custom'] = CRM_Core_BAO_CustomField
::postProcess($params,
941 if ($this->_contactId
&& !empty($this->_oldSubtypes
)) {
942 CRM_Contact_BAO_ContactType
::deleteCustomSetForSubtypeMigration($this->_contactId
,
943 $params['contact_type'],
945 $params['contact_sub_type']
949 if (array_key_exists('CommunicationPreferences', $this->_editOptions
)) {
950 // this is a chekbox, so mark false if we dont get a POST value
951 $params['is_opt_out'] = CRM_Utils_Array
::value('is_opt_out', $params, FALSE);
954 // process shared contact address.
955 CRM_Contact_BAO_Contact_Utils
::processSharedAddress($params['address']);
957 if (!array_key_exists('TagsAndGroups', $this->_editOptions
) && !empty($params['group'])) {
958 unset($params['group']);
961 if (!empty($params['contact_id']) && ($this->_action
& CRM_Core_Action
::UPDATE
) && !empty($params['group'])) {
962 // figure out which all groups are intended to be removed
963 $contactGroupList = CRM_Contact_BAO_GroupContact
::getContactGroup($params['contact_id'], 'Added');
964 if (is_array($contactGroupList)) {
965 foreach ($contactGroupList as $key) {
966 if ((!array_key_exists($key['group_id'], $params['group']) ||
$params['group'][$key['group_id']] != 1) && empty($key['is_hidden'])) {
967 $params['group'][$key['group_id']] = -1;
973 // parse street address, CRM-5450
974 $parseStatusMsg = NULL;
975 if ($this->_parseStreetAddress
) {
976 $parseResult = self
::parseAddress($params);
977 $parseStatusMsg = self
::parseAddressStatusMsg($parseResult);
980 // Allow un-setting of location info, CRM-5969
981 $params['updateBlankLocInfo'] = TRUE;
983 $contact = CRM_Contact_BAO_Contact
::create($params, TRUE, FALSE, TRUE);
986 if ($this->_contactId
) {
987 $message = ts('%1 has been updated.', array(1 => $contact->display_name
));
990 $message = ts('%1 has been created.', array(1 => $contact->display_name
));
993 // set the contact ID
994 $this->_contactId
= $contact->id
;
996 if (array_key_exists('TagsAndGroups', $this->_editOptions
)) {
997 //add contact to tags
998 CRM_Core_BAO_EntityTag
::create($params['tag'], 'civicrm_contact', $params['contact_id']);
1001 if (isset($params['contact_taglist']) && !empty($params['contact_taglist'])) {
1002 CRM_Core_Form_Tag
::postProcess($params['contact_taglist'], $params['contact_id'], 'civicrm_contact', $this);
1006 if (!empty($parseStatusMsg)) {
1007 $message .= "<br />$parseStatusMsg";
1009 if (!empty($updateMembershipMsg)) {
1010 $message .= "<br />$updateMembershipMsg";
1013 $session = CRM_Core_Session
::singleton();
1014 $session->setStatus($message, ts('Contact Saved'), 'success');
1016 // add the recently viewed contact
1017 $recentOther = array();
1018 if (($session->get('userID') == $contact->id
) ||
1019 CRM_Contact_BAO_Contact_Permission
::allow($contact->id
, CRM_Core_Permission
::EDIT
)
1021 $recentOther['editUrl'] = CRM_Utils_System
::url('civicrm/contact/add', 'reset=1&action=update&cid=' . $contact->id
);
1024 if (($session->get('userID') != $this->_contactId
) && CRM_Core_Permission
::check('delete contacts')) {
1025 $recentOther['deleteUrl'] = CRM_Utils_System
::url('civicrm/contact/view/delete', 'reset=1&delete=1&cid=' . $contact->id
);
1028 CRM_Utils_Recent
::add($contact->display_name
,
1029 CRM_Utils_System
::url('civicrm/contact/view', 'reset=1&cid=' . $contact->id
),
1031 $this->_contactType
,
1033 $contact->display_name
,
1037 // here we replace the user context with the url to view this contact
1038 $buttonName = $this->controller
->getButtonName();
1039 if ($buttonName == $this->getButtonName('upload', 'new')) {
1040 $resetStr = "reset=1&ct={$contact->contact_type}";
1041 $resetStr .= $this->_contactSubType ?
"&cst={$this->_contactSubType}" : '';
1042 $session->replaceUserContext(CRM_Utils_System
::url('civicrm/contact/add', $resetStr));
1045 $context = CRM_Utils_Request
::retrieve('context', 'String', $this);
1046 $qfKey = CRM_Utils_Request
::retrieve('key', 'String', $this);
1047 //validate the qfKey
1048 $urlParams = 'reset=1&cid=' . $contact->id
;
1050 $urlParams .= "&context=$context";
1052 if (CRM_Utils_Rule
::qfKey($qfKey)) {
1053 $urlParams .= "&key=$qfKey";
1056 $session->replaceUserContext(CRM_Utils_System
::url('civicrm/contact/view', $urlParams));
1059 // now invoke the post hook
1060 if ($this->_action
& CRM_Core_Action
::UPDATE
) {
1061 CRM_Utils_Hook
::post('edit', $params['contact_type'], $contact->id
, $contact);
1064 CRM_Utils_Hook
::post('create', $params['contact_type'], $contact->id
, $contact);
1069 * Is there any real significant data in the hierarchical location array.
1071 * @param array $fields
1072 * The hierarchical value representation of this location.
1075 * true if data exists, false otherwise
1077 public static function blockDataExists(&$fields) {
1078 if (!is_array($fields)) {
1082 static $skipFields = array(
1091 foreach ($fields as $name => $value) {
1093 foreach ($skipFields as $skip) {
1094 if (strpos("[$skip]", $name) !== FALSE) {
1095 if ($name == 'phone') {
1105 if (is_array($value)) {
1106 if (self
::blockDataExists($value)) {
1111 if (!empty($value)) {
1121 * That checks for duplicate contacts.
1123 * @param array $fields
1124 * Fields array which are submitted.
1126 * @param int $contactID
1128 * @param string $contactType
1131 public static function checkDuplicateContacts(&$fields, &$errors, $contactID, $contactType) {
1132 // if this is a forced save, ignore find duplicate rule
1133 if (empty($fields['_qf_Contact_upload_duplicate'])) {
1135 $dedupeParams = CRM_Dedupe_Finder
::formatParams($fields, $contactType);
1136 $ids = CRM_Dedupe_Finder
::dupesByParams($dedupeParams, $contactType, 'Supervised', array($contactID));
1139 $contactLinks = CRM_Contact_BAO_Contact_Utils
::formatContactIDSToLinks($ids, TRUE, TRUE, $contactID);
1141 $duplicateContactsLinks = '<div class="matching-contacts-found">';
1142 $duplicateContactsLinks .= ts('One matching contact was found. ', array(
1143 'count' => count($contactLinks['rows']),
1144 'plural' => '%count matching contacts were found.<br />',
1146 if ($contactLinks['msg'] == 'view') {
1147 $duplicateContactsLinks .= ts('You can View the existing contact', array(
1148 'count' => count($contactLinks['rows']),
1149 'plural' => 'You can View the existing contacts',
1153 $duplicateContactsLinks .= ts('You can View or Edit the existing contact', array(
1154 'count' => count($contactLinks['rows']),
1155 'plural' => 'You can View or Edit the existing contacts',
1158 if ($contactLinks['msg'] == 'merge') {
1159 // We should also get a merge link if this is for an existing contact
1160 $duplicateContactsLinks .= ts(', or Merge this contact with an existing contact');
1162 $duplicateContactsLinks .= '.';
1163 $duplicateContactsLinks .= '</div>';
1164 $duplicateContactsLinks .= '<table class="matching-contacts-actions">';
1166 for ($i = 0; $i < count($contactLinks['rows']); $i++
) {
1168 $row .= ' <td class="matching-contacts-name"> ';
1169 $row .= $contactLinks['rows'][$i]['display_name'];
1171 $row .= ' <td class="matching-contacts-email"> ';
1172 $row .= $contactLinks['rows'][$i]['primary_email'];
1174 $row .= ' <td class="action-items"> ';
1175 $row .= $contactLinks['rows'][$i]['view'];
1176 $row .= $contactLinks['rows'][$i]['edit'];
1177 $row .= CRM_Utils_Array
::value('merge', $contactLinks['rows'][$i]);
1182 $duplicateContactsLinks .= $row . '</table>';
1183 $duplicateContactsLinks .= ts("If you're sure this record is not a duplicate, click the 'Save Matching Contact' button below.");
1185 $errors['_qf_default'] = $duplicateContactsLinks;
1187 // let smarty know that there are duplicates
1188 $template = CRM_Core_Smarty
::singleton();
1189 $template->assign('isDuplicate', 1);
1191 elseif (!empty($fields['_qf_Contact_refresh_dedupe'])) {
1192 // add a session message for no matching contacts
1193 CRM_Core_Session
::setStatus(ts('No matching contact found.'), ts('None Found'), 'info');
1199 * Use the form name to create the tpl file name.
1203 public function getTemplateFileName() {
1204 if ($this->_contactSubType
) {
1205 $templateFile = "CRM/Contact/Form/Edit/SubType/{$this->_contactSubType}.tpl";
1206 $template = CRM_Core_Form
::getTemplate();
1207 if ($template->template_exists($templateFile)) {
1208 return $templateFile;
1211 return parent
::getTemplateFileName();
1215 * Parse all address blocks present in given params
1216 * and return parse result for all address blocks,
1217 * This function either parse street address in to child
1218 * elements or build street address from child elements.
1220 * @param array $params
1221 * of key value consist of address blocks.
1224 * as array of sucess/fails for each address block
1226 public function parseAddress(&$params) {
1227 $parseSuccess = $parsedFields = array();
1228 if (!is_array($params['address']) ||
1229 CRM_Utils_System
::isNull($params['address'])
1231 return $parseSuccess;
1234 foreach ($params['address'] as $instance => & $address) {
1235 $buildStreetAddress = FALSE;
1236 $parseFieldName = 'street_address';
1242 if (!empty($address[$fld])) {
1243 $parseFieldName = 'street_number';
1244 $buildStreetAddress = TRUE;
1249 // main parse string.
1250 $parseString = CRM_Utils_Array
::value($parseFieldName, $address);
1252 // parse address field.
1253 $parsedFields = CRM_Core_BAO_Address
::parseStreetAddress($parseString);
1255 if ($buildStreetAddress) {
1256 //hack to ignore spaces between number and suffix.
1257 //here user gives input as street_number so it has to
1258 //be street_number and street_number_suffix, but
1259 //due to spaces though preg detect string as street_name
1260 //consider it as 'street_number_suffix'.
1261 $suffix = $parsedFields['street_number_suffix'];
1263 $suffix = $parsedFields['street_name'];
1265 $address['street_number_suffix'] = $suffix;
1266 $address['street_number'] = $parsedFields['street_number'];
1268 $streetAddress = NULL;
1271 'street_number_suffix',
1275 if (in_array($fld, array(
1279 $streetAddress .= ' ';
1281 $streetAddress .= CRM_Utils_Array
::value($fld, $address);
1283 $address['street_address'] = trim($streetAddress);
1284 $parseSuccess[$instance] = TRUE;
1288 // consider address is automatically parseable,
1289 // when we should found street_number and street_name
1290 if (empty($parsedFields['street_name']) ||
empty($parsedFields['street_number'])) {
1294 // check for original street address string.
1295 if (empty($parseString)) {
1299 $parseSuccess[$instance] = $success;
1301 // we do not reset element values, but keep what we've parsed
1302 // in case of partial matches: CRM-8378
1304 // merge parse address in to main address block.
1305 $address = array_merge($address, $parsedFields);
1309 return $parseSuccess;
1313 * Check parse result and if some address block fails then this
1314 * function return the status message for all address blocks.
1316 * @param array $parseResult
1317 * An array of address blk instance and its status.
1319 * @return null|string
1320 * $statusMsg string status message for all address blocks.
1322 public static function parseAddressStatusMsg($parseResult) {
1324 if (!is_array($parseResult) ||
empty($parseResult)) {
1328 $parseFails = array();
1329 foreach ($parseResult as $instance => $success) {
1331 $parseFails[] = self
::ordinalNumber($instance);
1335 if (!empty($parseFails)) {
1336 $statusMsg = ts("Complete street address(es) have been saved. However we were unable to split the address in the %1 address block(s) into address elements (street number, street name, street unit) due to an unrecognized address format. You can set the address elements manually by clicking 'Edit Address Elements' next to the Street Address field while in edit mode.",
1337 array(1 => implode(', ', $parseFails))
1345 * Convert normal number to ordinal number format.
1346 * like 1 => 1st, 2 => 2nd and so on...
1348 * @param int $number
1349 * number to convert in to ordinal number.
1352 * ordinal number for given number.
1354 public static function ordinalNumber($number) {
1355 if (empty($number)) {
1360 switch (floor($number / 10) %
10) {
1363 switch ($number %
10) {
1378 return "$number$str";
1382 * Update membership status to deceased.
1383 * function return the status message for updated membership.
1385 * @param array $deceasedParams
1386 * having contact id and deceased value.
1388 * @return null|string
1389 * $updateMembershipMsg string status message for updated membership.
1391 public function updateMembershipStatus($deceasedParams) {
1392 $updateMembershipMsg = NULL;
1393 $contactId = CRM_Utils_Array
::value('contact_id', $deceasedParams);
1394 $deceasedDate = CRM_Utils_Array
::value('deceased_date', $deceasedParams);
1396 // process to set membership status to deceased for both active/inactive membership
1398 $this->_contactType
== 'Individual' && !empty($deceasedParams['is_deceased'])
1401 $session = CRM_Core_Session
::singleton();
1402 $userId = $session->get('userID');
1404 $userId = $contactId;
1407 // get deceased status id
1408 $allStatus = CRM_Member_PseudoConstant
::membershipStatus();
1409 $deceasedStatusId = array_search('Deceased', $allStatus);
1410 if (!$deceasedStatusId) {
1411 return $updateMembershipMsg;
1415 if ($deceasedDate && strtotime($deceasedDate) > $today) {
1416 return $updateMembershipMsg;
1419 // get non deceased membership
1420 $dao = new CRM_Member_DAO_Membership();
1421 $dao->contact_id
= $contactId;
1422 $dao->whereAdd("status_id != $deceasedStatusId");
1424 $activityTypes = CRM_Core_PseudoConstant
::activityType(TRUE, FALSE, FALSE, 'name');
1425 $allStatus = CRM_Member_PseudoConstant
::membershipStatus();
1427 while ($dao->fetch()) {
1428 // update status to deceased (for both active/inactive membership )
1429 CRM_Core_DAO
::setFieldValue('CRM_Member_DAO_Membership', $dao->id
,
1430 'status_id', $deceasedStatusId
1433 // add membership log
1434 $membershipLog = array(
1435 'membership_id' => $dao->id
,
1436 'status_id' => $deceasedStatusId,
1437 'start_date' => CRM_Utils_Date
::isoToMysql($dao->start_date
),
1438 'end_date' => CRM_Utils_Date
::isoToMysql($dao->end_date
),
1439 'modified_id' => $userId,
1440 'modified_date' => date('Ymd'),
1441 'membership_type_id' => $dao->membership_type_id
,
1442 'max_related' => $dao->max_related
,
1445 CRM_Member_BAO_MembershipLog
::add($membershipLog, CRM_Core_DAO
::$_nullArray);
1447 //create activity when membership status is changed
1448 $activityParam = array(
1449 'subject' => "Status changed from {$allStatus[$dao->status_id]} to {$allStatus[$deceasedStatusId]}",
1450 'source_contact_id' => $userId,
1451 'target_contact_id' => $dao->contact_id
,
1452 'source_record_id' => $dao->id
,
1453 'activity_type_id' => array_search('Change Membership Status', $activityTypes),
1457 'activity_date_time' => date('Y-m-d H:i:s'),
1459 'is_current_revision' => 1,
1462 $activityResult = civicrm_api('activity', 'create', $activityParam);
1469 $updateMembershipMsg = ts("%1 Current membership(s) for this contact have been set to 'Deceased' status.",
1470 array(1 => $memCount)
1475 return $updateMembershipMsg;