HEX
Server: Apache
System: Linux s1 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
User: gerold (1018)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals
Upload Files
File: /home/gerold/public_html/wp-content/plugins/snapshot-backups/tpl/modals/welcome-activation.php
<?php // phpcs:ignore
/**
 * Populate welcome modal with appropriate copies.
 *
 * @package snapshot
 */

use WPMUDEV\Snapshot4\Task\Check\Hub;
use WPMUDEV\Snapshot4\Helper\Settings;
use WPMUDEV\Snapshot4\Helper\Api;

$need_reactivate_membership = false;

$button_class = 'sui-button-blue';
$this->render(
	'modals/edit-schedule',
	array(
		'modal_title'        => __( 'Backup schedule', 'snapshot' ),
		'message'            => __( 'Schedule backups to run automatically. We highly recommend daily or weekly backups, depending on the activity level of your website.', 'snapshot' ),
		'button'             => __( 'Save schedule', 'snapshot' ),
		'button_saving'      => __( 'Saving', 'snapshot' ),
		'status'             => 'active',
		'files'              => 'all',
		'tables'             => 'all',
		'is_branding_hidden' => $is_branding_hidden,
	)
);

if ( snapshot_has_error( Hub::ERR_DASH_PRESENT, $errors ) ) {
	$this->render(
		'modals/welcome-wpmu-dashboard',
		array(
			'modal_title'        => __( 'Install WPMU DEV Dashboard', 'snapshot' ),
			'message'            => __( 'Whoops, looks like you don\'t have the WPMU DEV Dashboard plugin installed and activated. This plugin is the API connection between WPMU DEV and your site, so if you want to use WPMU DEV to store your backups simply download and install it.', 'snapshot' ),
			'button'             => __( 'Install plugin', 'snapshot' ),
			'button_loading'     => __( 'Installing plugin', 'snapshot' ),
			'button_class'       => $button_class,
			'active_first_slide' => true,
			'installed'          => false,
			'is_branding_hidden' => $is_branding_hidden,
		)
	);
} elseif ( snapshot_has_error( Hub::ERR_DASH_ACTIVE, $errors ) ) {
	$this->render(
		'modals/welcome-wpmu-dashboard',
		array(
			'modal_title'        => __( 'Activate WPMU DEV Dashboard', 'snapshot' ),
			/* translators: %s - Admin name */
			'message'            => sprintf( __( '%s, welcome to the hottest backup plugin for WordPress. It looks like you haven\'t activated the WPMU DEV Dashboard plugin. The plugin is the API connection between WPMU DEV and your site, so if you want to use WPMU DEV to store your backups simply activate the plugin.', 'snapshot' ), wp_get_current_user()->display_name ),
			'button'             => __( 'Activate plugin', 'snapshot' ),
			'button_loading'     => __( 'Activating plugin', 'snapshot' ),
			'button_class'       => $button_class,
			'active_first_slide' => true,
			'installed'          => true,
			'is_branding_hidden' => $is_branding_hidden,
		)
	);
	$need_reactivate_membership = true;
} elseif ( snapshot_has_error( Hub::ERR_DASH_APIKEY, $errors ) ) {
	$this->render(
		'modals/welcome-wpmu-dashboard',
		array(
			'active_first_slide' => false,
			'button_class'       => $button_class,
			'installed'          => true,
			'button_loading'     => __( 'Logging in', 'snapshot' ),
			'is_branding_hidden' => $is_branding_hidden,
		)
	);
}

$need_reactivate_membership = $need_reactivate_membership || Api::need_reactivate_membership();
if ( $need_reactivate_membership ) {
	$this->render( 'modals/membership-expired' );
}

if ( true === $welcome_modal && ! $need_reactivate_membership ) {
	$this->render(
		'modals/welcome',
		array(
			'modal_title'        => $welcome_modal_alt
				? __( 'Welcome back', 'snapshot' )
				: ( Settings::get_branding_hide_doc_link() ? __( 'Welcome!', 'snapshot' ) : __( 'Welcome to Snapshot Pro', 'snapshot' ) ),
			'message'            => $welcome_modal_alt
				/* translators: %s - Admin name */
				? sprintf( __( '%s, welcome back to the hottest backup plugin for WordPress. We have saved all your settings and old backups. You\'ll be able to restore the backups anytime and use already configured settings.', 'snapshot' ), wp_get_current_user()->display_name )
				: ( Settings::get_branding_hide_doc_link()
					/* translators: %s - Admin name */
					? sprintf( __( '%s, welcome to the hottest backup plugin for WordPress. The backup has been successfully connected to the WPMU DEV remote destination and you\'re ready to create your first backup.', 'snapshot' ), wp_get_current_user()->display_name )
					/* translators: %s - Admin name */
					: sprintf( __( '%s, welcome to the hottest backup plugin for WordPress. Snapshot Pro is successfully connected with the WPMU DEV Dashboard plugin and you\'re ready to create your first backup.', 'snapshot' ), wp_get_current_user()->display_name )
				),
			'message2'           => __( 'Please choose backup region to continue.', 'snapshot' ),
			'button'             => $welcome_modal_alt ? __( 'Okay, thanks!', 'snapshot' ) : __( 'Get started', 'snapshot' ),
			'button_class'       => $button_class,

			'status'             => 'active',
			'files'              => 'all',
			'tables'             => 'all',
			'is_branding_hidden' => $is_branding_hidden,
		)
	);
}