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

GiveWP – Donation Plugin and Fundraising Platform, version 2.3.0. 27 lines.

- Page: https://pluginprobe.com/plugins/give/2.3.0/code/includes/admin/upgrades/views/upgrades-complete.php
- Raw: https://pluginprobe.com/plugins/give/2.3.0/raw/includes/admin/upgrades/views/upgrades-complete.php
- Modified: 2018-05-03T03:28:36+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/2.3.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, WordImpress
 * @license     https://opensource.org/licenses/gpl-license GNU Public License
 * @since       1.8.12
 */

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}
?>
<div class="wrap" id="poststuff">
	<div id="give-updates">
		<h1 id="give-updates-h1"><?php esc_html_e( 'Give - Updates Complete', 'give' ); ?></h1>
		<hr class="wp-header-end">

		<div class="give-update-panel-content">
			<p><?php esc_html_e( 'Congratulations! You are running the latest versions of Give and its add-ons.', 'give' ); ?></p>
		</div>

	</div>
</div>
```
