LLMS_DB_Upgrader::show_notice_started()

Show a notice when a manual update is started.


Return Return

(void)


Top ↑

Source Source

File: includes/class-llms-db-ugrader.php

277
278
279
280
281
282
283
284
285
286
287
288
protected function show_notice_started() {
 
    LLMS_Admin_Notices::add_notice(
        'bg-db-update-started',
        __( 'Your database is being upgraded in the background. Feel free to leave this page. A notice like this will appear when the update is complete.', 'lifterlms' ),
        array(
            'dismissible'      => true,
            'dismiss_for_days' => 0,
        )
    );
 
}


Top ↑

Changelog Changelog

Changelog
Version Description
5.2.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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