コード例 #1
0
function civicrm_api3_job_process_membership_reminder_date($params)
{
    require_once 'CRM/Member/BAO/Membership.php';
    $result = CRM_Member_BAO_Membership::updateMembershipReminderDate($params);
    if ($result['is_error'] == 0) {
        return civicrm_api3_create_success();
    } else {
        return civicrm_api3_create_error($result['messages']);
    }
}