# give/4.17.0/includes/admin/upgrades/views/upgrades-complete.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.17.0. 34 lines.

- Page: https://pluginprobe.com/plugins/give/4.17.0/code/includes/admin/upgrades/views/upgrades-complete.php
- Raw: https://pluginprobe.com/plugins/give/4.17.0/raw/includes/admin/upgrades/views/upgrades-complete.php
- Modified: 2020-03-31T00:14:12+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/give/4.17.0/code/includes/admin/upgrades/views/upgrades-complete.php#L10-L20`.

```php
<?php
/**
 * Upgrades Completed Screen
 *
 * @package     Give
 * @subpackage  Admin/Upgrades
 * @copyright   Copyright (c) 2017, GiveWP
 * @license     https://opensource.org/licenses/gpl-license GNU Public License
 * @since       1.8.12
 */

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}
?>
<div id="give-updates" class="wrap give-settings-page">

	<div class="give-settings-header">
		<h1 id="give-updates-h1"
			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>
	</div>

	<div id="give-updates-content">
		<div id="poststuff" class="give-update-panel-content give-clearfix">
			<p>
				<?php echo '🎉 '; ?>
				<?php esc_html_e( 'Congratulations! You are all up to date and running the latest versions of GiveWP and its add-ons.', 'give' ); ?>
			</p>
		</div>
	</div>

</div>

```
