| 1 |
<?php |
| 2 |
/** |
| 3 |
* Upgrades Completed Screen |
| 4 |
* |
| 5 |
* @package Give |
| 6 |
* @subpackage Admin/Upgrades |
| 7 |
* @copyright Copyright (c) 2017, GiveWP |
| 8 |
* @license https://opensource.org/licenses/gpl-license GNU Public License |
| 9 |
* @since 1.8.12 |
| 10 |
*/ |
| 11 |
|
| 12 |
// Exit if accessed directly. |
| 13 |
if ( ! defined( 'ABSPATH' ) ) { |
| 14 |
exit; |
| 15 |
} |
| 16 |
?> |
| 17 |
<div id="give-updates" class="wrap give-settings-page"> |
| 18 |
|
| 19 |
<div class="give-settings-header"> |
| 20 |
<h1 id="give-updates-h1" |
| 21 |
class="wp-heading-inline"><?php echo sprintf( __( 'GiveWP %s Updates Complete', 'give' ), '<span class="give-settings-heading-sep dashicons dashicons-arrow-right-alt2"></span>' ); ?></h1> |
| 22 |
</div> |
| 23 |
|
| 24 |
<div id="give-updates-content"> |
| 25 |
<div id="poststuff" class="give-update-panel-content give-clearfix"> |
| 26 |
<p> |
| 27 |
<?php echo '🎉 '; ?> |
| 28 |
<?php esc_html_e( 'Congratulations! You are all up to date and running the latest versions of GiveWP and its add-ons.', 'give' ); ?> |
| 29 |
</p> |
| 30 |
</div> |
| 31 |
</div> |
| 32 |
|
| 33 |
</div> |
| 34 |
|