Admin::saveGroupSyncMetaBox( $groupId )

Save group sync metabox value when bp group is saved from admin

Description

Source

File: bp-integrations/learndash/buddypress/Admin.php

49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
public function saveGroupSyncMetaBox($groupId)
{
    // created from backend
    if (bp_ld_sync()->isRequestExists('bp-ld-sync-enable') && ! bp_ld_sync()->getRequest('bp-ld-sync-enable')) {
        bp_ld_sync('buddypress')->sync->generator($groupId)->desyncFromLearndash();
        return false;
    }
 
    $newGroup = bp_ld_sync()->getRequest('bp-ld-sync-id', null);
    $generator = bp_ld_sync('buddypress')->sync->generator($groupId);
 
    if ($generator->hasLdGroup() && $generator->getLdGroupId() == $newGroup) {
        return false;
    }
 
    $generator->associateToLearndash($newGroup)
        ->syncBpAdmins()
        ->syncBpMods()
        ->syncBpUsers();
}

Changelog

Changelog
Version Description
BuddyBoss 1.0.0 Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.