Your IP : 216.73.217.176


Current Path : /home/bechata/mp/wp-content/uploads/2022/ejn73c/
Upload File :
Current File : /home/bechata/mp/wp-content/uploads/2022/ejn73c/checkbox-group.php.tar

bechata/mp/wp-content/plugins/shortcodes-ultimate/admin/partials/settings/fields/checkbox-group.php000066600000001165151752231010030650 0ustar00home<?php defined( 'ABSPATH' ) || exit; ?>

<fieldset>

	<?php foreach ( $data['options'] as $cb_id => $cb_label ) : ?>

		<input
			type="checkbox"
			name="<?php echo esc_attr( sprintf( '%s[%s]', $data['id'], $cb_id ) ); ?>"
			id="<?php echo esc_attr( sprintf( '%s_%s', $data['id'], $cb_id ) ); ?>"
			<?php checked( in_array( $cb_id, get_option( $data['id'], array() ), true ) ); ?>
		>
		<label for="<?php echo esc_attr( sprintf( '%s_%s', $data['id'], $cb_id ) ); ?>" >
			<?php echo esc_html( $cb_label ); ?>
		</label>
		<br>

	<?php endforeach; ?>

</fieldset>

<p class="description"><?php echo $data['description']; ?></p>