File "ip-retention.php"

Full Path: /home/londdqdw/public_html/06/wp-content/plugins/wordpress-popup/views/admin/settings/privacy/ip-retention.php
File size: 1.99 KB
MIME-type: text/x-php
Charset: utf-8

<?php
/**
 * IP retention section under the "privacy" tab.
 *
 * @package Hustle
 * @since 4.0.3
 */

ob_start();
?>
<div class="sui-row">
	<div class="sui-col-md-6">
		<input type="number"
			name="ip_retention_number"
			value="<?php echo esc_attr( $settings['ip_retention_number'] ); ?>"
			placeholder="0"
			class="sui-form-control" />
	</div>
	<div class="sui-col-md-6" >
		<select name="ip_retention_number_unit" id="hustle-select-ip_retention_number_unit">
			<option value="days" <?php selected( 'days', $settings['ip_retention_number_unit'] ); ?>><?php esc_html_e( 'day(s)', 'hustle' ); ?></option>
			<option value="weeks"  <?php selected( 'weeks', $settings['ip_retention_number_unit'] ); ?>><?php esc_html_e( 'week(s)', 'hustle' ); ?></option>
			<option value="months" <?php selected( 'months', $settings['ip_retention_number_unit'] ); ?>><?php esc_html_e( 'month(s)', 'hustle' ); ?></option>
			<option value="years" <?php selected( 'years', $settings['ip_retention_number_unit'] ); ?>><?php esc_html_e( 'year(s)', 'hustle' ); ?></option>
		</select>
	</div>
</div>
<?php $custom_tab_content = ob_get_clean(); ?>

<fieldset class="sui-form-field">

	<label class="sui-settings-label"><?php esc_html_e( 'IP Retention', 'hustle' ); ?></label>

	<span class="sui-description" style="margin-bottom: 10px;"><?php esc_html_e( 'Choose how long to retain IP address before submission or tracking data entry is anonymized in your database.', 'hustle' ); ?></span>

	<?php
	$this->render(
		'admin/global/sui-components/sui-tabs',
		array(
			'name'        => 'retain_ip_forever',
			'radio'       => true,
			'saved_value' => $settings['retain_ip_forever'],
			'sidetabs'    => true,
			'content'     => true,
			'options'     => array(
				'1' => array(
					'value' => '1',
					'label' => esc_html__( 'Forever', 'hustle' ),
				),
				'0' => array(
					'value'   => '0',
					'label'   => esc_html__( 'Custom', 'hustle' ),
					'boxed'   => true,
					'content' => $custom_tab_content,
				),
			),
		)
	);
	?>

</fieldset>