Admin::printDependencyAdminNotice()

Output the dependency notice html

Description

Source

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

55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
public function printDependencyAdminNotice()
{
    $missingDepencencies = bp_ld_sync()->dependencies->getMissingDepencencies();
 
    $message = sprintf(
        _n(
            '%s is not initilized, the following required plugins are missing: %s',
            '%s is not initilized, the following required plugin is missing: %s',
            count($missingDepencencies),
            'buddyboss'
        ),
        '<b>' . bp_ld_sync()->pluginName . '</b>',
        '<b>' . implode(',', $missingDepencencies) . '</b>'
    );
 
    printf('<div class="notice notice-error">%s</div>', wpautop($message));
}

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.