Your IP : 216.73.217.143


Current Path : /home/ereika83/www/wp-content/plugins/hustle/views/admin/settings/data/
Upload File :
Current File : /home/ereika83/www/wp-content/plugins/hustle/views/admin/settings/data/uninstallation-settings.php

<?php
/**
 * Reset settings on uninstal section under the "data" tab.
 *
 * @package Hustle
 * @since 4.0.3
 */

$content_options = array(
	array(
		'type'  => 'inline_notice',
		'icon'  => 'info',
		'value' => esc_html__( 'This will delete all the modules and their data - submissions, conversion data, and plugin settings when the plugin is uninstalled.', 'hustle' ),
	),
);
$options         = array(
	'0' => array(
		'value' => '0',
		'label' => esc_html__( 'Preserve', 'hustle' ),
	),
	'1' => array(
		'value'   => '1',
		'label'   => esc_html__( 'Reset', 'hustle' ),
		'content' => $this->get_html_for_options(
			$content_options,
			true
		),
	),
);

$reset_settings_uninstall = '1' === $settings['reset_settings_uninstall']; ?>
<div class="sui-box-settings-row">

	<div class="sui-box-settings-col-1">
		<span class="sui-settings-label"><?php esc_html_e( 'Uninstallation', 'hustle' ); ?></span>
		<span class="sui-description"><?php esc_html_e( 'When you uninstall this plugin, what do you want to do with your plugin’s settings and data?', 'hustle' ); ?></span>
	</div>

	<div class="sui-box-settings-col-2">

		<?php
		$this->render(
			'admin/global/sui-components/sui-tabs',
			array(
				'name'        => 'reset_settings_uninstall',
				'radio'       => true,
				'saved_value' => $settings['reset_settings_uninstall'],
				'sidetabs'    => true,
				'content'     => true,
				'options'     => $options,
			)
		);

		if ( is_multisite() ) {
			?>
			<label class="sui-settings-label"><?php esc_html_e( 'Reset Subsite Settings', 'hustle' ); ?></label>

			<span class="sui-description" style="margin-bottom: 10px;"><?php esc_html_e( 'Choose if you want to reset settings on subsites.', 'hustle' ); ?></span>

			<?php
			$reset_all = ! empty( $settings['reset_all_sites'] ) ? $settings['reset_all_sites'] : 0;
			$options   = array(
				'0' => array(
					'value' => '0',
					'label' => esc_html__( 'Keep', 'hustle' ),
				),
				'1' => array(
					'value' => '1',
					'label' => esc_html__( 'Reset', 'hustle' ),
				),
			);
			$this->render(
				'admin/global/sui-components/sui-tabs',
				array(
					'name'        => 'reset_all_sites',
					'radio'       => true,
					'saved_value' => $reset_all,
					'sidetabs'    => true,
					'options'     => $options,
				)
			);
		}
		?>

	</div>
</div>