✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ server366.web-hosting.com ​🇻​♯➤ 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP 🇾​♯➤ 2025

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 67.223.118.204 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.243
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ 𝗔𝗟𝗟 𝗪𝗢𝗥𝗞𝗜𝗡𝗚....

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /home/builxejc/public_html/wp-content/plugins/akismet/views//setup-jetpack.php
<?php
declare( strict_types = 1 );

//phpcs:disable VariableAnalysis
// There are "undefined" variables here because they're defined in the code that includes this file as a template.

$user_status = $akismet_user->status ?? null;
?>
<div class="akismet-setup__connection">
	<?php if ( ! empty( $akismet_user->user_email ) && ! empty( $akismet_user->user_login ) ) : ?>
	<div class="akismet-setup__connection-user">
		<div class="akismet-setup__connection-avatar">
			<?php
			// Decorative avatar; empty alt for screen readers.
			echo get_avatar(
				$akismet_user->user_email,
				48,
				'',
				'',
				array(
					'class' => 'akismet-setup__connection-avatar-image',
					'alt'   => '',
				)
			);
			?>
			<div class="akismet-setup__connection-account">
				<div class="akismet-setup__connection-account-name">
					<?php
					printf(
						/* translators: %s is the WordPress.com username */
						esc_html__( 'Signed in as %s', 'akismet' ),
						'<strong>' . esc_html( $akismet_user->user_login ) . '</strong>'
					);
					?>
				</div>
				<div class="akismet-setup__connection-account-email"><?php echo esc_html( $akismet_user->user_email ); ?></div>
			</div>
		</div>
	</div>
	<?php endif; ?>
	<div class="akismet-setup__connection-action">
		<?php if ( in_array( $user_status, array( Akismet::USER_STATUS_CANCELLED, Akismet::USER_STATUS_MISSING, Akismet::USER_STATUS_NO_SUB ) ) ) : ?>

			<p class="akismet-setup__connection-action-intro">
				<?php esc_html_e( "Your Jetpack account is connected, but it doesn't have an active Akismet subscription yet. To continue, please choose a plan on Akismet.com.", 'akismet' ); ?>
			</p>

			<a href="https://akismet.com/get?utm_source=akismet_plugin&amp;utm_campaign=plugin_static_link&amp;utm_medium=in_plugin&amp;utm_content=jetpack_flow_<?php echo esc_attr( str_replace( '-', '_', $user_status ) ); ?>" class="akismet-setup__connection-button akismet-button">
				<?php esc_html_e( 'Choose a plan on Akismet.com', 'akismet' ); ?>
			</a>

			<p class="akismet-setup__connection-action-description">
				<?php esc_html_e( "Once you've chosen a plan, return here to complete your setup.", 'akismet' ); ?>
			</p>

		<?php elseif ( $user_status === Akismet::USER_STATUS_SUSPENDED ) : ?>
			<p class="akismet-setup__connection-action-intro">
				<?php esc_html_e( "Your Akismet account appears to be suspended. This sometimes happens if there's a billing or verification issue. Please contact our support team so we can help you get it sorted.", 'akismet' ); ?>
			</p>

			<a href="https://akismet.com/contact?utm_source=akismet_plugin&amp;utm_campaign=plugin_static_link&amp;utm_medium=in_plugin&amp;utm_content=jetpack_flow_suspended" class="akismet-setup__connection-button akismet-button">
				<?php esc_html_e( 'Contact support', 'akismet' ); ?>
			</a>
		<?php else : ?>
			<form name="akismet_use_wpcom_key" action="<?php echo esc_url( Akismet_Admin::get_page_url() ); ?>" method="post" id="akismet-activate">
				<input type="hidden" name="key" value="<?php echo esc_attr( $akismet_user->api_key ); ?>"/>
				<input type="hidden" name="action" value="enter-key">
				<?php wp_nonce_field( Akismet_Admin::NONCE ); ?>
				<input type="submit" class="akismet-setup__connection-button akismet-button" value="<?php esc_attr_e( 'Connect with Jetpack', 'akismet' ); ?>"/>
			</form>

			<p class="akismet-setup__connection-action-description">
				<?php esc_html_e( "By connecting, we'll use your Jetpack account to activate Akismet on this site.", 'akismet' ); ?>
			</p>
		<?php endif; ?>

		<?php if ( ! in_array( $user_status, array( Akismet::USER_STATUS_CANCELLED, Akismet::USER_STATUS_MISSING, Akismet::USER_STATUS_NO_SUB ) ) ) : ?>
			<p class="akismet-setup__connection-action-description">
				<?php
				echo wp_kses(
					sprintf(
						/* translators: The placeholder is a URL. */
						__( 'Want to use a different account? <a href="%s" class="akismet-external-link">Visit akismet.com</a> to set it up and get your API key.', 'akismet' ),
						esc_url( 'https://akismet.com/get?utm_source=akismet_plugin&utm_campaign=plugin_static_link&utm_medium=in_plugin&utm_content=jetpack_flow_different_account' )
					),
					array(
						'a' => array(
							'href'  => array(),
							'class' => array(),
						),
					)
				);
				?>
			</p>
		<?php endif; ?>
	</div>
</div>


Current_dir [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
9 Jun 2026 8.33 AM
builxejc / builxejc
0755
.htaccess
0.41 KB
28 Apr 2026 8.56 AM
builxejc / builxejc
0644
activate.php
0.135 KB
30 Oct 2025 3.16 AM
builxejc / builxejc
0644
compatible-plugins.php
4.025 KB
27 Mar 2026 12.49 AM
builxejc / builxejc
0644
config.php
17.35 KB
8 Apr 2026 8.50 PM
builxejc / builxejc
0644
connect-jp.php
0.446 KB
30 Oct 2025 3.16 AM
builxejc / builxejc
0644
enter.php
1.02 KB
13 Sep 2023 6.26 AM
builxejc / builxejc
0644
footer.php
0.146 KB
8 Apr 2026 8.50 PM
builxejc / builxejc
0644
get.php
1.243 KB
30 Oct 2025 3.08 AM
builxejc / builxejc
0644
logo.php
0.752 KB
19 Jun 2023 11.17 PM
builxejc / builxejc
0644
notice.php
17.603 KB
3 Mar 2026 12.38 AM
builxejc / builxejc
0644
predefined.php
0.305 KB
27 Mar 2026 12.53 AM
builxejc / builxejc
0644
setup-jetpack.php
4.24 KB
30 Oct 2025 3.16 AM
builxejc / builxejc
0644
setup.php
3.315 KB
30 Oct 2025 3.16 AM
builxejc / builxejc
0644
start.php
1.034 KB
8 Apr 2026 8.50 PM
builxejc / builxejc
0644
stats.php
1.229 KB
8 Apr 2026 8.50 PM
builxejc / builxejc
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF