llms_update_3130_builder_notice()

Add an admin notice about the new builder


Return Return

(void)


Top ↑

Source Source

File: includes/functions/updates/llms-functions-updates-3130.php

44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
function llms_update_3130_builder_notice() {
 
    require_once LLMS_PLUGIN_DIR . 'includes/admin/class.llms.admin.notices.php';
 
    LLMS_Admin_Notices::add_notice(
        'update-3130',
        array(
            'html'        => sprintf(
                __( 'Welcome to LifterLMS 3.13.0! We\'ve packed a ton of features into this release: Take a moment to get familiar with the all new %1$scourse builder%3$s and our new %2$suser roles%3$s.', 'lifterlms' ),
                '<a href="https://lifterlms.com/docs/using-course-builder/" target="_blank">',
                '<a href="https://lifterlms.com/docs/roles-and-capabilities/" target="_blank">',
                '</a>'
            ),
            'type'        => 'info',
            'dismissible' => true,
            'remindable'  => false,
        )
    );
 
}


Top ↑

Changelog Changelog

Changelog
Version Description
3.13.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.