systopia / Custom-Data-Helper

Helper class for CiviCRM Extensions
GNU Affero General Public License v3.0
0 stars 0 forks source link

Replace deprecated code #1

Open bjendres opened 3 years ago

bjendres commented 3 years ago

Deprecated functions:

bjendres commented 1 year ago

Replaced

$activity_type = CRM_Core_OptionGroup::getValue('activity_type', $activity_type, 'name');

with

$activity_type = civicrm_api3('OptionValue', 'getvalue', [
     'option_group_id' => 'activity_type',
     'name' => $activity_type,
     'return' => 'value'
]);

Not released yet, though.