<?php
/**
 * Banner position - cs - partial page.
 *
 * @package  Iubenda
 */

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}
$positions = array(
	'float-top-left',
	'float-top-center',
	'float-top-right',
	'float-bottom-left',
	'float-bottom-center',
	'float-bottom-right',
	'full-top',
	'full-bottom',
	'float-center',
);

?>
<div class="cs_banner_choices mb-5 mb-lg-0">
	<div class="cs_banner_choices__position mr-4 pr-4">
		<h4><?php esc_html_e( 'Position', 'iubenda' ); ?></h4>
		<div class="position-select">
			<div id="dropdown">
				<?php foreach ( $positions as $v ) : ?>
					<input type="radio" class="position-select-radio" name="iubenda_cookie_law_solution[simplified][position]" value="<?php echo esc_html( $v ); ?>" id="<?php echo esc_html( $v ); ?>"
						<?php
						// Handle if there is no banner position saved in database.
						if ( reset( $positions ) === $v && is_null( iub_array_get( iubenda()->options['cs'], 'simplified.position' ) ) ) {
							echo esc_html( 'checked' );
						}
						checked( $v, iub_array_get( iubenda()->options['cs'], 'simplified.position' ) );
						?>
					>
					<label id="label-<?php echo esc_html( $v ); ?>" for="<?php echo esc_html( $v ); ?>">
						<div>
							<div class="<?php echo esc_html( str_replace( '-', ' ', $v ) ); ?>"><span></span></div>
						</div>
					</label>
				<?php endforeach; ?>
				<div class="overlaybox p-0">
					<div class="p-3">
						<label class="checkbox-regular">
							<input type="checkbox" class="mr-2" name="iubenda_cookie_law_solution[simplified][background_overlay]" <?php checked( true, (bool) iub_array_get( iubenda()->options['cs'], 'simplified.background_overlay' ) ); ?>>
							<span><?php esc_html_e( 'Background-overlay', 'iubenda' ); ?></span>
						</label>
					</div>
				</div>
			</div>
		</div>
	</div>
</div>
