LLMS_DB_Upgrader::show_notice_started()
Show a notice when a manual update is started.
Return Return
(void)
Source Source
File: includes/class-llms-db-ugrader.php
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,
)
);
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 5.2.0 | Introduced. |