| 1 |
<?php |
| 2 |
/** |
| 3 |
* Template for displaying update message |
| 4 |
* |
| 5 |
* @version 4.0.0 |
| 6 |
*/ |
| 7 |
|
| 8 |
defined( 'ABSPATH' ) || exit; |
| 9 |
?> |
| 10 |
|
| 11 |
<div class="notice notice-warning lp-notice-update-database"> |
| 12 |
<p> |
| 13 |
<?php _e( '<strong>LearnPress update</strong> – We need to update your database to the latest version.', 'learnpress' ); ?> |
| 14 |
</p> |
| 15 |
<p> |
| 16 |
<a class="button button-primary lp-btn-go-upgrade-db" data-context="message" href="<?php echo esc_url_raw( admin_url( 'admin.php?page=learn-press-tools&tab=database&action=upgrade-db' ) ); ?>"><?php esc_html_e( 'Go to Update', 'learnpress' ); ?></a> |
| 17 |
</p> |
| 18 |
</div> |
| 19 |
|