}
}
}
- CRM_Core_BAO_CustomValueTable::postProcess($customParams, CRM_Core_DAO::$_nullArray, 'civicrm_activity',
+ CRM_Core_BAO_CustomValueTable::postProcess($customParams, 'civicrm_activity',
$params['mainActivityId'], 'Activity'
);
}
*/
public function postProcess() {
$params = $this->controller->exportValues($this->_name);
- $fields = array();
$transaction = new CRM_Core_Transaction();
CRM_Core_BAO_CustomValueTable::postProcess($params,
- $fields,
'civicrm_case',
$this->_entityID,
'Case'
$params = $this->controller->exportValues($this->_name);
CRM_Core_BAO_CustomValueTable::postProcess($params,
- $this->_groupTree[$this->_groupID]['fields'],
'civicrm_contact',
$this->_tableID,
$this->_entityType
// Get the form values and groupTree
$params = $this->controller->exportValues($this->_name);
CRM_Core_BAO_CustomValueTable::postProcess($params,
- $this->_groupTree[$this->_groupID]['fields'],
'civicrm_contact',
$this->_contactId,
$this->_entityType
if ($online && $contribution) {
CRM_Core_BAO_CustomValueTable::postProcess($form->_params,
- CRM_Core_DAO::$_nullArray,
'civicrm_contribution',
$contribution->id,
'Contribution'
* Post process function.
*
* @param array $params
- * @param $customFields
* @param $entityTable
* @param int $entityID
* @param $customFieldExtends
*/
- public static function postProcess(&$params, &$customFields, $entityTable, $entityID, $customFieldExtends) {
+ public static function postProcess(&$params, $entityTable, $entityID, $customFieldExtends) {
$customData = CRM_Core_BAO_CustomField::postProcess($params,
- $customFields,
+ array(),
$entityID,
$customFieldExtends
);
//add custom data for participant
CRM_Core_BAO_CustomValueTable::postProcess($this->_params,
- CRM_Core_DAO::$_nullArray,
'civicrm_participant',
$participants[0]->id,
'Participant'
}
CRM_Core_BAO_CustomValueTable::postProcess($this->_params,
- CRM_Core_DAO::$_nullArray,
'civicrm_participant',
$participant->id,
'Participant'
foreach ($createdMemberships as $createdMembership) {
CRM_Core_BAO_CustomValueTable::postProcess(
$form->_params,
- CRM_Core_DAO::$_nullArray,
'civicrm_membership',
$createdMembership->id,
'Membership'