# monei/7.3.0/src/Templates/NoticeAdminNewInstall.php

MONEI Payments for WooCommerce, version 7.3.0. 29 lines.

- Page: https://pluginprobe.com/plugins/monei/7.3.0/code/src/Templates/NoticeAdminNewInstall.php
- Raw: https://pluginprobe.com/plugins/monei/7.3.0/raw/src/Templates/NoticeAdminNewInstall.php
- Modified: 2025-10-10T14:08:50+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/monei/7.3.0/code/src/Templates/NoticeAdminNewInstall.php#L10-L20`.

```php
<?php

namespace Monei\Templates;

class NoticeAdminNewInstall implements TemplateInterface {


	public function render( $data ): void {
		?>

		<div id="message" class="updated woocommerce-message woocommerce-monei-messages">
			<a class="woocommerce-message-close notice-dismiss" style="top:0;"
				href="<?php echo esc_url( wp_nonce_url( add_query_arg( 'monei-hide-new-version', 'hide-new-version-monei' ), 'monei_hide_new_version_nonce', '_monei_hide_new_version_nonce' ) ); ?>"><?php esc_html_e( 'Dismiss', 'monei' ); ?></a>
			<h3>
				<?php echo esc_html__( 'Thank you for install MONEI for WooCommerce. Version: ', 'monei' ) . ' ' . esc_html( MONEI_VERSION ); ?>
			</h3>
			<p>
				<?php esc_html_e( 'The best payment gateway rates. The perfect solution to manage your digital payments.', 'monei' ); ?>
			</p>
			<p>
				<a href="<?php echo esc_url( MONEI_SIGNUP ); ?>" class="button-primary"
					target="_blank"><?php esc_html_e( 'Sign up', 'monei' ); ?></a>
				<a href="<?php echo esc_url( MONEI_WEB ); ?>" class="button-primary"
					target="_blank"><?php esc_html_e( 'MONEI website', 'monei' ); ?></a>
			</p>
		</div>
		<?php
	}
}
```
